Struct gdk_x11_sys::xlib::XCrossingEvent
[−]#[repr(C)]pub struct XCrossingEvent {Show 17 fields
pub type_: i32,
pub serial: u64,
pub send_event: i32,
pub display: *mut _XDisplay,
pub window: u64,
pub root: u64,
pub subwindow: u64,
pub time: u64,
pub x: i32,
pub y: i32,
pub x_root: i32,
pub y_root: i32,
pub mode: i32,
pub detail: i32,
pub same_screen: i32,
pub focus: i32,
pub state: u32,
}
Fields
type_: i32
serial: u64
send_event: i32
display: *mut _XDisplay
window: u64
root: u64
subwindow: u64
time: u64
x: i32
y: i32
x_root: i32
y_root: i32
mode: i32
detail: i32
same_screen: i32
focus: i32
state: u32
Trait Implementations
impl AsMut<XCrossingEvent> for XEvent
impl AsMut<XCrossingEvent> for XEvent
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.
impl AsRef<XCrossingEvent> for XEvent
impl AsRef<XCrossingEvent> for XEvent
fn as_ref(&self) -> &XCrossingEvent
fn as_ref(&self) -> &XCrossingEvent
Converts this type into a shared reference of the (usually inferred) input type.
impl Clone for XCrossingEvent
impl Clone for XCrossingEvent
fn 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
impl Debug for XCrossingEvent
impl Debug for XCrossingEvent
impl<'a> From<&'a XCrossingEvent> for XEvent
impl<'a> From<&'a XCrossingEvent> for XEvent
fn from(other: &'a XCrossingEvent) -> XEvent
fn from(other: &'a XCrossingEvent) -> XEvent
Converts to this type from the input type.
impl<'a> From<&'a XEvent> for XCrossingEvent
impl<'a> From<&'a XEvent> for XCrossingEvent
fn from(xevent: &'a XEvent) -> XCrossingEvent
fn from(xevent: &'a XEvent) -> XCrossingEvent
Converts to this type from the input type.
impl From<XCrossingEvent> for XEvent
impl From<XCrossingEvent> for XEvent
fn from(other: XCrossingEvent) -> XEvent
fn from(other: XCrossingEvent) -> XEvent
Converts to this type from the input type.
impl From<XEvent> for XCrossingEvent
impl From<XEvent> for XCrossingEvent
fn from(xevent: XEvent) -> XCrossingEvent
fn from(xevent: XEvent) -> XCrossingEvent
Converts to this type from the input type.
impl PartialEq<XCrossingEvent> for XCrossingEvent
impl PartialEq<XCrossingEvent> for XCrossingEvent
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 ==
. Read more
fn ne(&self, other: &XCrossingEvent) -> bool
fn ne(&self, other: &XCrossingEvent) -> bool
This method tests for !=
.
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more