pub struct SwipeActionResult {
pub begin: Point,
pub end: Vec<Point>,
pub end_hold: Vec<i32>,
pub duration: Vec<i32>,
pub only_hover: bool,
pub starting: i32,
pub contact: i32,
}Expand description
Result of a Swipe action.
Fields§
§begin: Point§end: Vec<Point>§end_hold: Vec<i32>§duration: Vec<i32>§only_hover: bool§starting: i32§contact: i32Trait Implementations§
Source§impl Clone for SwipeActionResult
impl Clone for SwipeActionResult
Source§fn clone(&self) -> SwipeActionResult
fn clone(&self) -> SwipeActionResult
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 SwipeActionResult
impl Debug for SwipeActionResult
Source§impl<'de> Deserialize<'de> for SwipeActionResult
impl<'de> Deserialize<'de> for SwipeActionResult
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 SwipeActionResult
impl RefUnwindSafe for SwipeActionResult
impl Send for SwipeActionResult
impl Sync for SwipeActionResult
impl Unpin for SwipeActionResult
impl UnwindSafe for SwipeActionResult
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