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 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 Serialize for ColormapNotifyEvent
impl Serialize for ColormapNotifyEvent
source§impl TryParse for ColormapNotifyEvent
impl TryParse for ColormapNotifyEvent
impl Copy 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