Struct raw_window_handle::XcbWindowHandle
source · #[non_exhaustive]pub struct XcbWindowHandle {
pub window: u32,
pub visual_id: u32,
}Expand description
Raw window handle for Xcb.
Construction
let window_handle = XcbWindowHandle::empty();
/* set fields */Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.window: u32An X11 xcb_window_t.
visual_id: u32An X11 xcb_visualid_t, or 0 if unknown.
Implementations§
Trait Implementations§
source§impl Clone for XcbWindowHandle
impl Clone for XcbWindowHandle
source§fn clone(&self) -> XcbWindowHandle
fn clone(&self) -> XcbWindowHandle
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 XcbWindowHandle
impl Debug for XcbWindowHandle
source§impl From<XcbWindowHandle> for RawWindowHandle
impl From<XcbWindowHandle> for RawWindowHandle
source§fn from(value: XcbWindowHandle) -> Self
fn from(value: XcbWindowHandle) -> Self
Converts to this type from the input type.
source§impl Hash for XcbWindowHandle
impl Hash for XcbWindowHandle
source§impl PartialEq<XcbWindowHandle> for XcbWindowHandle
impl PartialEq<XcbWindowHandle> for XcbWindowHandle
source§fn eq(&self, other: &XcbWindowHandle) -> bool
fn eq(&self, other: &XcbWindowHandle) -> bool
This method tests for
self and other values to be equal, and is used
by ==.