Struct winit::platform_impl::linux::x11::ffi::XErrorEvent
source · #[repr(C)]pub struct XErrorEvent {
pub type_: i32,
pub display: *mut _XDisplay,
pub resourceid: u64,
pub serial: u64,
pub error_code: u8,
pub request_code: u8,
pub minor_code: u8,
}
Fields§
§type_: i32
§display: *mut _XDisplay
§resourceid: u64
§serial: u64
§error_code: u8
§request_code: u8
§minor_code: u8
Trait Implementations§
source§impl AsMut<XErrorEvent> for XEvent
impl AsMut<XErrorEvent> for XEvent
source§fn as_mut(&mut self) -> &mut XErrorEvent
fn as_mut(&mut self) -> &mut XErrorEvent
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsRef<XErrorEvent> for XEvent
impl AsRef<XErrorEvent> for XEvent
source§fn as_ref(&self) -> &XErrorEvent
fn as_ref(&self) -> &XErrorEvent
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for XErrorEvent
impl Clone for XErrorEvent
source§fn clone(&self) -> XErrorEvent
fn clone(&self) -> XErrorEvent
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 XErrorEvent
impl Debug for XErrorEvent
source§impl<'a> From<&'a XErrorEvent> for XEvent
impl<'a> From<&'a XErrorEvent> for XEvent
source§fn from(other: &'a XErrorEvent) -> XEvent
fn from(other: &'a XErrorEvent) -> XEvent
Converts to this type from the input type.
source§impl<'a> From<&'a XEvent> for XErrorEvent
impl<'a> From<&'a XEvent> for XErrorEvent
source§fn from(xevent: &'a XEvent) -> XErrorEvent
fn from(xevent: &'a XEvent) -> XErrorEvent
Converts to this type from the input type.
source§impl From<XErrorEvent> for XEvent
impl From<XErrorEvent> for XEvent
source§fn from(other: XErrorEvent) -> XEvent
fn from(other: XErrorEvent) -> XEvent
Converts to this type from the input type.
source§impl From<XEvent> for XErrorEvent
impl From<XEvent> for XErrorEvent
source§fn from(xevent: XEvent) -> XErrorEvent
fn from(xevent: XEvent) -> XErrorEvent
Converts to this type from the input type.
source§impl PartialEq for XErrorEvent
impl PartialEq for XErrorEvent
impl Copy for XErrorEvent
impl StructuralPartialEq for XErrorEvent
Auto Trait Implementations§
impl Freeze for XErrorEvent
impl RefUnwindSafe for XErrorEvent
impl !Send for XErrorEvent
impl !Sync for XErrorEvent
impl Unpin for XErrorEvent
impl UnwindSafe for XErrorEvent
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.