Struct raw_window_handle::unix::XlibWindowHandle
source · #[non_exhaustive]pub struct XlibWindowHandle {
pub window: c_ulong,
pub visual_id: c_ulong,
}
Expand description
Raw window handle for Xlib.
Construction
let window_handle = XlibWindowHandle::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: 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<XlibWindowHandle> for XlibWindowHandle
impl PartialEq<XlibWindowHandle> 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 ==
.