pub struct AudioFmt {
pub sample_rate: u32,
pub channels: u32,
pub sample_fmt: SampleFmt,
}Expand description
Audio format descriptor.
Fields§
§sample_rate: u32§channels: u32§sample_fmt: SampleFmtAuto Trait Implementations§
impl Freeze for AudioFmt
impl RefUnwindSafe for AudioFmt
impl Send for AudioFmt
impl Sync for AudioFmt
impl Unpin for AudioFmt
impl UnwindSafe for AudioFmt
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