Struct x11_dl::xlib::XCrossingEvent
source · #[repr(C)]pub struct XCrossingEvent {Show 17 fields
pub type_: c_int,
pub serial: c_ulong,
pub send_event: Bool,
pub display: *mut Display,
pub window: Window,
pub root: Window,
pub subwindow: Window,
pub time: Time,
pub x: c_int,
pub y: c_int,
pub x_root: c_int,
pub y_root: c_int,
pub mode: c_int,
pub detail: c_int,
pub same_screen: Bool,
pub focus: Bool,
pub state: c_uint,
}
Fields§
§type_: c_int
§serial: c_ulong
§send_event: Bool
§display: *mut Display
§window: Window
§root: Window
§subwindow: Window
§time: Time
§x: c_int
§y: c_int
§x_root: c_int
§y_root: c_int
§mode: c_int
§detail: c_int
§same_screen: Bool
§focus: Bool
§state: c_uint
Trait Implementations§
source§impl AsMut<XCrossingEvent> for XEvent
impl AsMut<XCrossingEvent> for XEvent
source§fn as_mut(&mut self) -> &mut XCrossingEvent
fn as_mut(&mut self) -> &mut XCrossingEvent
Converts this type into a mutable reference of the (usually inferred) input type.
source§impl AsRef<XCrossingEvent> for XEvent
impl AsRef<XCrossingEvent> for XEvent
source§fn as_ref(&self) -> &XCrossingEvent
fn as_ref(&self) -> &XCrossingEvent
Converts this type into a shared reference of the (usually inferred) input type.
source§impl Clone for XCrossingEvent
impl Clone for XCrossingEvent
source§fn clone(&self) -> XCrossingEvent
fn clone(&self) -> XCrossingEvent
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 XCrossingEvent
impl Debug for XCrossingEvent
source§impl<'a> From<&'a XCrossingEvent> for XEvent
impl<'a> From<&'a XCrossingEvent> for XEvent
source§fn from(other: &'a XCrossingEvent) -> XEvent
fn from(other: &'a XCrossingEvent) -> XEvent
Converts to this type from the input type.
source§impl<'a> From<&'a XEvent> for XCrossingEvent
impl<'a> From<&'a XEvent> for XCrossingEvent
source§fn from(xevent: &'a XEvent) -> XCrossingEvent
fn from(xevent: &'a XEvent) -> XCrossingEvent
Converts to this type from the input type.
source§impl From<XCrossingEvent> for XEvent
impl From<XCrossingEvent> for XEvent
source§fn from(other: XCrossingEvent) -> XEvent
fn from(other: XCrossingEvent) -> XEvent
Converts to this type from the input type.
source§impl From<XEvent> for XCrossingEvent
impl From<XEvent> for XCrossingEvent
source§fn from(xevent: XEvent) -> XCrossingEvent
fn from(xevent: XEvent) -> XCrossingEvent
Converts to this type from the input type.
source§impl PartialEq for XCrossingEvent
impl PartialEq for XCrossingEvent
source§fn eq(&self, other: &XCrossingEvent) -> bool
fn eq(&self, other: &XCrossingEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for XCrossingEvent
impl StructuralPartialEq for XCrossingEvent
Auto Trait Implementations§
impl Freeze for XCrossingEvent
impl RefUnwindSafe for XCrossingEvent
impl !Send for XCrossingEvent
impl !Sync for XCrossingEvent
impl Unpin for XCrossingEvent
impl UnwindSafe for XCrossingEvent
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