pub struct ActionMove {
pub type_: String,
pub x: i64,
pub y: i64,
}Expand description
A mouse move action.
Fields§
§type_: StringSpecifies the event type.
x: i64The x-coordinate to move to.
y: i64The y-coordinate to move to.
Trait Implementations§
Source§impl Clone for ActionMove
impl Clone for ActionMove
Source§fn clone(&self) -> ActionMove
fn clone(&self) -> ActionMove
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 ActionMove
impl Debug for ActionMove
Source§impl<'de> Deserialize<'de> for ActionMove
impl<'de> Deserialize<'de> for ActionMove
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 ActionMove
impl RefUnwindSafe for ActionMove
impl Send for ActionMove
impl Sync for ActionMove
impl Unpin for ActionMove
impl UnsafeUnpin for ActionMove
impl UnwindSafe for ActionMove
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