pub struct DecodedFrames {
pub interleaved: Vec<i32>,
pub channels: u32,
pub bits_per_sample: u32,
pub sample_rate: u32,
}Expand description
Decoded audio frames.
Fields§
§interleaved: Vec<i32>Interleaved PCM (channel-major within each sample).
channels: u32§bits_per_sample: u32§sample_rate: u32Auto Trait Implementations§
impl Freeze for DecodedFrames
impl RefUnwindSafe for DecodedFrames
impl Send for DecodedFrames
impl Sync for DecodedFrames
impl Unpin for DecodedFrames
impl UnsafeUnpin for DecodedFrames
impl UnwindSafe for DecodedFrames
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