Struct ColormapNotifyEvent
pub struct ColormapNotifyEvent {
pub response_type: u8,
pub sequence: u16,
pub window: u32,
pub colormap: u32,
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: u32
§colormap: u32
§new: bool
§state: ColormapState
Trait Implementations§
§impl Clone for ColormapNotifyEvent
impl Clone for ColormapNotifyEvent
§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 more§impl Debug for ColormapNotifyEvent
impl Debug for ColormapNotifyEvent
§impl Default for ColormapNotifyEvent
impl Default for ColormapNotifyEvent
§fn default() -> ColormapNotifyEvent
fn default() -> ColormapNotifyEvent
Returns the “default value” for a type. Read more
§impl Serialize for ColormapNotifyEvent
impl Serialize for ColormapNotifyEvent
§impl TryParse for ColormapNotifyEvent
impl TryParse for ColormapNotifyEvent
§fn try_parse(
initial_value: &[u8],
) -> Result<(ColormapNotifyEvent, &[u8]), ParseError>
fn try_parse( initial_value: &[u8], ) -> Result<(ColormapNotifyEvent, &[u8]), ParseError>
Try to parse the given values into an instance of this type. Read more
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> TryParseFd for Twhere
T: TryParse,
impl<T> TryParseFd for Twhere
T: TryParse,
§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