pub struct Block {
pub data: Vec<Sample>,
pub sample_rate: u32,
pub channels: u16,
}Expand description
A fixed-size block of audio samples.
Fields§
§data: Vec<Sample>Sample data (interleaved if multi-channel).
sample_rate: u32Sample rate in Hz.
channels: u16Number of audio channels.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Block
impl RefUnwindSafe for Block
impl Send for Block
impl Sync for Block
impl Unpin for Block
impl UnwindSafe for Block
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