pub struct ActionDragPath {
pub x: i64,
pub y: i64,
}Expand description
An x/y coordinate pair, e.g. { x: 100, y: 200 }.
Fields§
§x: i64The x-coordinate.
y: i64The y-coordinate.
Trait Implementations§
Source§impl Clone for ActionDragPath
impl Clone for ActionDragPath
Source§fn clone(&self) -> ActionDragPath
fn clone(&self) -> ActionDragPath
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 ActionDragPath
impl Debug for ActionDragPath
Source§impl<'de> Deserialize<'de> for ActionDragPath
impl<'de> Deserialize<'de> for ActionDragPath
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 ActionDragPath
impl RefUnwindSafe for ActionDragPath
impl Send for ActionDragPath
impl Sync for ActionDragPath
impl Unpin for ActionDragPath
impl UnsafeUnpin for ActionDragPath
impl UnwindSafe for ActionDragPath
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