pub struct MouseAction {
pub line: u64,
pub column: u64,
pub flags: u64,
pub click_count: Option<u64>,
}
Expand description
A mouse event. See the note for LineRange
.
Fields§
§line: u64
§column: u64
§flags: u64
§click_count: Option<u64>
Trait Implementations§
Source§impl Clone for MouseAction
impl Clone for MouseAction
Source§fn clone(&self) -> MouseAction
fn clone(&self) -> MouseAction
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 MouseAction
impl Debug for MouseAction
Source§impl<'de> Deserialize<'de> for MouseAction
impl<'de> Deserialize<'de> for MouseAction
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MouseAction
impl PartialEq for MouseAction
Source§impl Serialize for MouseAction
impl Serialize for MouseAction
impl Eq for MouseAction
impl StructuralPartialEq for MouseAction
Auto Trait Implementations§
impl Freeze for MouseAction
impl RefUnwindSafe for MouseAction
impl Send for MouseAction
impl Sync for MouseAction
impl Unpin for MouseAction
impl UnwindSafe for MouseAction
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