pub struct ActionDoubleClick {
pub type_: String,
pub x: i64,
pub y: i64,
}Expand description
A double click action.
Fields§
§type_: StringSpecifies the event type.
x: i64The x-coordinate where the double click occurred.
y: i64The y-coordinate where the double click occurred.
Trait Implementations§
Source§impl Clone for ActionDoubleClick
impl Clone for ActionDoubleClick
Source§fn clone(&self) -> ActionDoubleClick
fn clone(&self) -> ActionDoubleClick
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionDoubleClick
impl Debug for ActionDoubleClick
Source§impl<'de> Deserialize<'de> for ActionDoubleClick
impl<'de> Deserialize<'de> for ActionDoubleClick
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
Auto Trait Implementations§
impl Freeze for ActionDoubleClick
impl RefUnwindSafe for ActionDoubleClick
impl Send for ActionDoubleClick
impl Sync for ActionDoubleClick
impl Unpin for ActionDoubleClick
impl UnsafeUnpin for ActionDoubleClick
impl UnwindSafe for ActionDoubleClick
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