pub enum MetaValue {
Scalar(f64),
Range {
min: f64,
max: f64,
},
Line(Vec<f64>),
Histogram(Vec<f64>),
Statistics {
min: f64,
p25: Option<f64>,
mean: f64,
p50: Option<f64>,
p75: Option<f64>,
max: f64,
},
FrequencyResponse {
magnitude: Vec<f64>,
phase: Option<Vec<f64>>,
},
Table(Vec<(String, String)>),
}Variants§
Scalar(f64)
Range
Line(Vec<f64>)
Histogram(Vec<f64>)
Statistics
Statistical summary with min/mean/max and optional percentiles (p25, p50, p75)
FrequencyResponse
Frequency response: magnitude in dB at each frequency bin, optional phase in degrees
Table(Vec<(String, String)>)
Tabular metadata: field name -> value pairs
Trait Implementations§
impl StructuralPartialEq for MetaValue
Auto Trait Implementations§
impl Freeze for MetaValue
impl RefUnwindSafe for MetaValue
impl Send for MetaValue
impl Sync for MetaValue
impl Unpin for MetaValue
impl UnsafeUnpin for MetaValue
impl UnwindSafe for MetaValue
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