pub struct DoubleClickAction {
pub x: i32,
pub y: i32,
}Expand description
A double click action.
Fields§
§x: i32The x-coordinate where the double click occurred.
y: i32The y-coordinate where the double click occurred.
Trait Implementations§
Source§impl Clone for DoubleClickAction
impl Clone for DoubleClickAction
Source§fn clone(&self) -> DoubleClickAction
fn clone(&self) -> DoubleClickAction
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 DoubleClickAction
impl Debug for DoubleClickAction
Source§impl<'de> Deserialize<'de> for DoubleClickAction
impl<'de> Deserialize<'de> for DoubleClickAction
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 DoubleClickAction
impl PartialEq for DoubleClickAction
Source§impl Serialize for DoubleClickAction
impl Serialize for DoubleClickAction
impl StructuralPartialEq for DoubleClickAction
Auto Trait Implementations§
impl Freeze for DoubleClickAction
impl RefUnwindSafe for DoubleClickAction
impl Send for DoubleClickAction
impl Sync for DoubleClickAction
impl Unpin for DoubleClickAction
impl UnwindSafe for DoubleClickAction
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