pub enum AudioFrameFormat {
F32S16,
F64S16,
F64S24,
F64S32,
}Expand description
Length of audio frame and length of sample/subframe
Variants§
F32S16
32 bit frame, 16 bit samples
F64S16
64 bit frame, 16 bit samples
F64S24
64 bit frame, 24 bit samples
F64S32
64 bit frame, 32 bit samples
Trait Implementations§
Source§impl Clone for AudioFrameFormat
impl Clone for AudioFrameFormat
Source§fn clone(&self) -> AudioFrameFormat
fn clone(&self) -> AudioFrameFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AudioFrameFormat
Source§impl Debug for AudioFrameFormat
impl Debug for AudioFrameFormat
Source§impl PartialEq for AudioFrameFormat
impl PartialEq for AudioFrameFormat
impl StructuralPartialEq for AudioFrameFormat
Auto Trait Implementations§
impl Freeze for AudioFrameFormat
impl RefUnwindSafe for AudioFrameFormat
impl Send for AudioFrameFormat
impl Sync for AudioFrameFormat
impl Unpin for AudioFrameFormat
impl UnsafeUnpin for AudioFrameFormat
impl UnwindSafe for AudioFrameFormat
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