pub struct Point {
pub x: f32,
pub y: f32,
pub speed: f32,
pub direction: f32,
pub width: f32,
pub pressure: f32,
}
Expand description
Data representation of a point in a reMarkable document line
Fields§
§x: f32
§y: f32
§speed: f32
§direction: f32
§width: f32
§pressure: f32
Trait Implementations§
impl StructuralPartialEq for Point
Auto Trait Implementations§
impl Freeze for Point
impl RefUnwindSafe for Point
impl Send for Point
impl Sync for Point
impl Unpin for Point
impl UnwindSafe for Point
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