pub struct ParsedMovement {
pub start: (i32, i32),
pub end: (i32, i32),
pub t1_ms: i32,
pub t2_ms: i32,
}Fields§
§start: (i32, i32)§end: (i32, i32)§t1_ms: i32§t2_ms: i32Trait Implementations§
Source§impl Clone for ParsedMovement
impl Clone for ParsedMovement
Source§fn clone(&self) -> ParsedMovement
fn clone(&self) -> ParsedMovement
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 ParsedMovement
impl Debug for ParsedMovement
Source§impl Default for ParsedMovement
impl Default for ParsedMovement
Source§fn default() -> ParsedMovement
fn default() -> ParsedMovement
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParsedMovement
impl PartialEq for ParsedMovement
Source§fn eq(&self, other: &ParsedMovement) -> bool
fn eq(&self, other: &ParsedMovement) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ParsedMovement
impl Eq for ParsedMovement
impl StructuralPartialEq for ParsedMovement
Auto Trait Implementations§
impl Freeze for ParsedMovement
impl RefUnwindSafe for ParsedMovement
impl Send for ParsedMovement
impl Sync for ParsedMovement
impl Unpin for ParsedMovement
impl UnsafeUnpin for ParsedMovement
impl UnwindSafe for ParsedMovement
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