pub struct SampleRecord {
pub step: u64,
pub value: f64,
pub baseline: f64,
pub residual: f64,
pub drift: f64,
pub slew: f64,
pub grammar_state: GrammarState,
}Fields§
§step: u64§value: f64§baseline: f64§residual: f64§drift: f64§slew: f64§grammar_state: GrammarStateTrait Implementations§
Source§impl Clone for SampleRecord
impl Clone for SampleRecord
Source§fn clone(&self) -> SampleRecord
fn clone(&self) -> SampleRecord
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 moreAuto Trait Implementations§
impl Freeze for SampleRecord
impl RefUnwindSafe for SampleRecord
impl Send for SampleRecord
impl Sync for SampleRecord
impl Unpin for SampleRecord
impl UnsafeUnpin for SampleRecord
impl UnwindSafe for SampleRecord
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