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§
source§impl Clone for ColormapNotifyEvent
impl Clone for ColormapNotifyEvent
source§fn clone(&self) -> ColormapNotifyEvent
fn clone(&self) -> ColormapNotifyEvent
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ColormapNotifyEvent
impl Debug for ColormapNotifyEvent
source§impl Default for ColormapNotifyEvent
impl Default for ColormapNotifyEvent
source§fn default() -> ColormapNotifyEvent
fn default() -> ColormapNotifyEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ColormapNotifyEvent
impl<'de> Deserialize<'de> for ColormapNotifyEvent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<&ColormapNotifyEvent> for [u8; 32]
impl From<&ColormapNotifyEvent> for [u8; 32]
source§fn from(input: &ColormapNotifyEvent) -> Self
fn from(input: &ColormapNotifyEvent) -> Self
Converts to this type from the input type.
source§impl From<ColormapNotifyEvent> for [u8; 32]
impl From<ColormapNotifyEvent> for [u8; 32]
source§fn from(input: ColormapNotifyEvent) -> Self
fn from(input: ColormapNotifyEvent) -> Self
Converts to this type from the input type.
source§impl Hash for ColormapNotifyEvent
impl Hash for ColormapNotifyEvent
source§impl Ord for ColormapNotifyEvent
impl Ord for ColormapNotifyEvent
source§fn cmp(&self, other: &ColormapNotifyEvent) -> Ordering
fn cmp(&self, other: &ColormapNotifyEvent) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for ColormapNotifyEvent
impl PartialEq for ColormapNotifyEvent
source§fn 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 ==
.source§impl PartialOrd for ColormapNotifyEvent
impl PartialOrd for ColormapNotifyEvent
source§fn partial_cmp(&self, other: &ColormapNotifyEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &ColormapNotifyEvent) -> Option<Ordering>
1.0.0 · source§fn 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 moresource§impl Serialize for ColormapNotifyEvent
impl Serialize for ColormapNotifyEvent
source§impl Serialize for ColormapNotifyEvent
impl Serialize for ColormapNotifyEvent
source§impl TryParse for ColormapNotifyEvent
impl TryParse for ColormapNotifyEvent
impl Copy for ColormapNotifyEvent
impl Eq for ColormapNotifyEvent
impl StructuralPartialEq for ColormapNotifyEvent
Auto Trait Implementations§
impl Freeze for ColormapNotifyEvent
impl RefUnwindSafe for ColormapNotifyEvent
impl Send for ColormapNotifyEvent
impl Sync for ColormapNotifyEvent
impl Unpin for ColormapNotifyEvent
impl UnwindSafe for ColormapNotifyEvent
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
source§fn try_parse_fd<'a>(
value: &'a [u8],
_: &mut Vec<OwnedFd>
) -> Result<(T, &'a [u8]), ParseError>
fn try_parse_fd<'a>( value: &'a [u8], _: &mut Vec<OwnedFd> ) -> Result<(T, &'a [u8]), ParseError>
Try to parse the given values into an instance of this type. Read more