Struct raw_window_handle::XcbWindowHandle
source · #[non_exhaustive]pub struct XcbWindowHandle {
pub window: NonZeroU32,
pub visual_id: Option<NonZeroU32>,
}
Expand description
Raw window handle for Xcb.
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: NonZeroU32
An X11 xcb_window_t
.
visual_id: Option<NonZeroU32>
An X11 xcb_visualid_t
.
Implementations§
source§impl XcbWindowHandle
impl XcbWindowHandle
sourcepub fn new(window: NonZeroU32) -> Self
pub fn new(window: NonZeroU32) -> Self
Create a new handle to a window.
§Example
let window: NonZeroU32;
let mut handle = XcbWindowHandle::new(window);
// Optionally set the visual ID.
handle.visual_id = None;
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 for XcbWindowHandle
impl PartialEq 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 ==
.impl Copy for XcbWindowHandle
impl Eq for XcbWindowHandle
impl StructuralPartialEq for XcbWindowHandle
Auto Trait Implementations§
impl Freeze for XcbWindowHandle
impl RefUnwindSafe for XcbWindowHandle
impl Send for XcbWindowHandle
impl Sync for XcbWindowHandle
impl Unpin for XcbWindowHandle
impl UnwindSafe for XcbWindowHandle
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