pub struct PeaksData {
pub sample_rate: u32,
pub window_size: u32,
pub channels: Vec<Vec<PeakWindow>>,
}Expand description
Peak data for all channels at a fixed window size.
Fields§
§sample_rate: u32§window_size: u32§channels: Vec<Vec<PeakWindow>>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PeaksData
impl RefUnwindSafe for PeaksData
impl Send for PeaksData
impl Sync for PeaksData
impl Unpin for PeaksData
impl UnsafeUnpin for PeaksData
impl UnwindSafe for PeaksData
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