pub struct LatencyWindowMs {
pub key_p50_ms: f64,
pub key_p95_ms: f64,
}Expand description
Keystroke latency summary.
Fields§
§key_p50_ms: f64p50 key latency (ms).
key_p95_ms: f64p95 key latency (ms).
Trait Implementations§
Source§impl Clone for LatencyWindowMs
impl Clone for LatencyWindowMs
Source§fn clone(&self) -> LatencyWindowMs
fn clone(&self) -> LatencyWindowMs
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 LatencyWindowMs
impl Debug for LatencyWindowMs
Source§impl PartialEq for LatencyWindowMs
impl PartialEq for LatencyWindowMs
impl Copy for LatencyWindowMs
impl StructuralPartialEq for LatencyWindowMs
Auto Trait Implementations§
impl Freeze for LatencyWindowMs
impl RefUnwindSafe for LatencyWindowMs
impl Send for LatencyWindowMs
impl Sync for LatencyWindowMs
impl Unpin for LatencyWindowMs
impl UnwindSafe for LatencyWindowMs
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