pub struct KeystrokeTiming {
pub ch: char,
pub dwell_ms: f32,
pub flight_ms: f32,
}Expand description
Keystroke timing for one character.
Fields§
§ch: char§dwell_ms: f32§flight_ms: f32Trait Implementations§
Source§impl Clone for KeystrokeTiming
impl Clone for KeystrokeTiming
Source§fn clone(&self) -> KeystrokeTiming
fn clone(&self) -> KeystrokeTiming
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 moreimpl Copy for KeystrokeTiming
Source§impl Debug for KeystrokeTiming
impl Debug for KeystrokeTiming
Source§impl<'de> Deserialize<'de> for KeystrokeTiming
impl<'de> Deserialize<'de> for KeystrokeTiming
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
Source§impl PartialEq for KeystrokeTiming
impl PartialEq for KeystrokeTiming
Source§fn eq(&self, other: &KeystrokeTiming) -> bool
fn eq(&self, other: &KeystrokeTiming) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KeystrokeTiming
impl Serialize for KeystrokeTiming
impl StructuralPartialEq for KeystrokeTiming
Auto Trait Implementations§
impl Freeze for KeystrokeTiming
impl RefUnwindSafe for KeystrokeTiming
impl Send for KeystrokeTiming
impl Sync for KeystrokeTiming
impl Unpin for KeystrokeTiming
impl UnsafeUnpin for KeystrokeTiming
impl UnwindSafe for KeystrokeTiming
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