Struct x11::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
sourceimpl AsMut<XCrossingEvent> for XEvent
impl AsMut<XCrossingEvent> for XEvent
sourcefn 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.
sourceimpl AsRef<XCrossingEvent> for XEvent
impl AsRef<XCrossingEvent> for XEvent
sourcefn as_ref(&self) -> &XCrossingEvent
fn as_ref(&self) -> &XCrossingEvent
Converts this type into a shared reference of the (usually inferred) input type.
sourceimpl Clone for XCrossingEvent
impl Clone for XCrossingEvent
sourcefn clone(&self) -> XCrossingEvent
fn clone(&self) -> XCrossingEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for XCrossingEvent
impl Debug for XCrossingEvent
sourceimpl<'a> From<&'a XCrossingEvent> for XEvent
impl<'a> From<&'a XCrossingEvent> for XEvent
sourcefn from(other: &'a XCrossingEvent) -> XEvent
fn from(other: &'a XCrossingEvent) -> XEvent
Converts to this type from the input type.
sourceimpl<'a> From<&'a XEvent> for XCrossingEvent
impl<'a> From<&'a XEvent> for XCrossingEvent
sourcefn from(xevent: &'a XEvent) -> XCrossingEvent
fn from(xevent: &'a XEvent) -> XCrossingEvent
Converts to this type from the input type.
sourceimpl From<XCrossingEvent> for XEvent
impl From<XCrossingEvent> for XEvent
sourcefn from(other: XCrossingEvent) -> XEvent
fn from(other: XCrossingEvent) -> XEvent
Converts to this type from the input type.
sourceimpl From<XEvent> for XCrossingEvent
impl From<XEvent> for XCrossingEvent
sourcefn from(xevent: XEvent) -> XCrossingEvent
fn from(xevent: XEvent) -> XCrossingEvent
Converts to this type from the input type.
sourceimpl PartialEq<XCrossingEvent> for XCrossingEvent
impl PartialEq<XCrossingEvent> for XCrossingEvent
sourcefn 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 ==
. Read more
impl Copy for XCrossingEvent
impl StructuralPartialEq for XCrossingEvent
Auto Trait Implementations
impl RefUnwindSafe for XCrossingEvent
impl !Send for XCrossingEvent
impl !Sync for XCrossingEvent
impl Unpin for XCrossingEvent
impl UnwindSafe for XCrossingEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more