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