Struct raw_window_handle::XlibWindowHandle
source · #[non_exhaustive]pub struct XlibWindowHandle {
pub window: c_ulong,
pub visual_id: c_ulong,
}
Expand description
Raw window handle for Xlib.
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: c_ulong
An Xlib Window
.
visual_id: c_ulong
An Xlib visual ID, or 0 if unknown.
Implementations§
Trait Implementations§
source§impl Clone for XlibWindowHandle
impl Clone for XlibWindowHandle
source§fn clone(&self) -> XlibWindowHandle
fn clone(&self) -> XlibWindowHandle
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 XlibWindowHandle
impl Debug for XlibWindowHandle
source§impl From<XlibWindowHandle> for RawWindowHandle
impl From<XlibWindowHandle> for RawWindowHandle
source§fn from(value: XlibWindowHandle) -> Self
fn from(value: XlibWindowHandle) -> Self
Converts to this type from the input type.
source§impl Hash for XlibWindowHandle
impl Hash for XlibWindowHandle
source§impl PartialEq for XlibWindowHandle
impl PartialEq for XlibWindowHandle
source§fn eq(&self, other: &XlibWindowHandle) -> bool
fn eq(&self, other: &XlibWindowHandle) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for XlibWindowHandle
impl Eq for XlibWindowHandle
impl StructuralPartialEq for XlibWindowHandle
Auto Trait Implementations§
impl Freeze for XlibWindowHandle
impl RefUnwindSafe for XlibWindowHandle
impl Send for XlibWindowHandle
impl Sync for XlibWindowHandle
impl Unpin for XlibWindowHandle
impl UnwindSafe for XlibWindowHandle
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