pub struct DoubleClick {
pub _type: String,
pub x: i32,
pub y: i32,
}
Fields§
§_type: String
Specifies the event type. For a double click action, this property is always set to double_click
.
x: i32
The x-coordinate where the double click occurred.
y: i32
The y-coordinate where the double click occurred.
Trait Implementations§
Source§impl Debug for DoubleClick
impl Debug for DoubleClick
Source§impl<'de> Deserialize<'de> for DoubleClick
impl<'de> Deserialize<'de> for DoubleClick
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 DoubleClick
impl RefUnwindSafe for DoubleClick
impl Send for DoubleClick
impl Sync for DoubleClick
impl Unpin for DoubleClick
impl UnwindSafe for DoubleClick
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