pub struct SessionBehavioralSummary {
pub iki_histogram: [f64; 9],
pub iki_cv: f64,
pub hurst: f64,
pub pause_frequency: f64,
pub duration_secs: u64,
pub keystroke_count: u64,
}Fields§
§iki_histogram: [f64; 9]9-bin IKI histogram (edges: 0, 50, 100, 150, 200, 300, 500, 1000, 2000ms)
iki_cv: f64§hurst: f64Long-range dependency exponent
pause_frequency: f64§duration_secs: u64§keystroke_count: u64Trait Implementations§
Source§impl Clone for SessionBehavioralSummary
impl Clone for SessionBehavioralSummary
Source§fn clone(&self) -> SessionBehavioralSummary
fn clone(&self) -> SessionBehavioralSummary
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 SessionBehavioralSummary
impl Debug for SessionBehavioralSummary
Source§impl Default for SessionBehavioralSummary
impl Default for SessionBehavioralSummary
Source§impl<'de> Deserialize<'de> for SessionBehavioralSummary
impl<'de> Deserialize<'de> for SessionBehavioralSummary
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 SessionBehavioralSummary
impl RefUnwindSafe for SessionBehavioralSummary
impl Send for SessionBehavioralSummary
impl Sync for SessionBehavioralSummary
impl Unpin for SessionBehavioralSummary
impl UnsafeUnpin for SessionBehavioralSummary
impl UnwindSafe for SessionBehavioralSummary
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