pub struct ClientMouseEvent {
pub position_x: u16,
pub position_y: u16,
pub bottons: u8,
}Expand description
X11 mouse event to notify the server
Referring to RFC6143, seciont-7.5.5
Fields§
§position_x: u16§position_y: u16§bottons: u8Trait Implementations§
Source§impl Clone for ClientMouseEvent
impl Clone for ClientMouseEvent
Source§fn clone(&self) -> ClientMouseEvent
fn clone(&self) -> ClientMouseEvent
Returns a duplicate 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 ClientMouseEvent
impl Debug for ClientMouseEvent
Auto Trait Implementations§
impl Freeze for ClientMouseEvent
impl RefUnwindSafe for ClientMouseEvent
impl Send for ClientMouseEvent
impl Sync for ClientMouseEvent
impl Unpin for ClientMouseEvent
impl UnwindSafe for ClientMouseEvent
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