Struct wgpu::rwh::XlibWindowHandle
source · #[non_exhaustive]pub struct XlibWindowHandle {
pub window: u64,
pub visual_id: u64,
}
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: u64
An Xlib Window
.
visual_id: u64
An Xlib visual ID, or 0 if unknown.
Implementations§
source§impl XlibWindowHandle
impl XlibWindowHandle
sourcepub fn new(window: u64) -> XlibWindowHandle
pub fn new(window: u64) -> XlibWindowHandle
Create a new handle to a window.
Example
let window: c_ulong;
let mut handle = XlibWindowHandle::new(window);
// Optionally set the visual ID.
handle.visual_id = 0;
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) -> RawWindowHandle
fn from(value: XlibWindowHandle) -> RawWindowHandle
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 StructuralEq for XlibWindowHandle
impl StructuralPartialEq for XlibWindowHandle
Auto Trait Implementations§
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.