pub struct WavData {
pub header: WavHeader,
pub samples: Vec<f32>,
}
Expand description
Wav Data
Fields§
§header: WavHeader
§samples: Vec<f32>
Implementations§
Trait Implementations§
impl StructuralPartialEq for WavData
Auto Trait Implementations§
impl Freeze for WavData
impl RefUnwindSafe for WavData
impl Send for WavData
impl Sync for WavData
impl Unpin for WavData
impl UnwindSafe for WavData
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