Struct x11rb_protocol::protocol::xproto::ColormapNotifyEvent
source · [−]pub struct ColormapNotifyEvent {
pub response_type: u8,
pub sequence: u16,
pub window: Window,
pub colormap: Colormap,
pub new: bool,
pub state: ColormapState,
}
Expand description
the colormap for some window changed.
Fields
window
- The window whose associated colormap is changed, installed or uninstalled.colormap
- The colormap which is changed, installed or uninstalled. This isXCB_NONE
when the colormap is changed by a call toFreeColormap
._new
- Indicates whether the colormap was changed (1) or installed/uninstalled (0).state
-
See
FreeColormap
: request
Fields
response_type: u8
sequence: u16
window: Window
colormap: Colormap
new: bool
state: ColormapState
Trait Implementations
sourceimpl Clone for ColormapNotifyEvent
impl Clone for ColormapNotifyEvent
sourcefn clone(&self) -> ColormapNotifyEvent
fn clone(&self) -> ColormapNotifyEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ColormapNotifyEvent
impl Debug for ColormapNotifyEvent
sourceimpl Default for ColormapNotifyEvent
impl Default for ColormapNotifyEvent
sourcefn default() -> ColormapNotifyEvent
fn default() -> ColormapNotifyEvent
Returns the “default value” for a type. Read more
sourceimpl From<&'_ ColormapNotifyEvent> for [u8; 32]
impl From<&'_ ColormapNotifyEvent> for [u8; 32]
sourcefn from(input: &ColormapNotifyEvent) -> Self
fn from(input: &ColormapNotifyEvent) -> Self
Converts to this type from the input type.
sourceimpl From<ColormapNotifyEvent> for [u8; 32]
impl From<ColormapNotifyEvent> for [u8; 32]
sourcefn from(input: ColormapNotifyEvent) -> Self
fn from(input: ColormapNotifyEvent) -> Self
Converts to this type from the input type.
sourceimpl Hash for ColormapNotifyEvent
impl Hash for ColormapNotifyEvent
sourceimpl Ord for ColormapNotifyEvent
impl Ord for ColormapNotifyEvent
sourceimpl PartialEq<ColormapNotifyEvent> for ColormapNotifyEvent
impl PartialEq<ColormapNotifyEvent> for ColormapNotifyEvent
sourcefn eq(&self, other: &ColormapNotifyEvent) -> bool
fn eq(&self, other: &ColormapNotifyEvent) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ColormapNotifyEvent) -> bool
fn ne(&self, other: &ColormapNotifyEvent) -> bool
This method tests for !=
.
sourceimpl PartialOrd<ColormapNotifyEvent> for ColormapNotifyEvent
impl PartialOrd<ColormapNotifyEvent> for ColormapNotifyEvent
sourcefn partial_cmp(&self, other: &ColormapNotifyEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &ColormapNotifyEvent) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl TryParse for ColormapNotifyEvent
impl TryParse for ColormapNotifyEvent
impl Copy for ColormapNotifyEvent
impl Eq for ColormapNotifyEvent
impl StructuralEq for ColormapNotifyEvent
impl StructuralPartialEq for ColormapNotifyEvent
Auto Trait Implementations
impl RefUnwindSafe for ColormapNotifyEvent
impl Send for ColormapNotifyEvent
impl Sync for ColormapNotifyEvent
impl Unpin for ColormapNotifyEvent
impl UnwindSafe for ColormapNotifyEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more