pub enum AudioFormat {
Show 26 variants
U8,
S8,
U16Le,
U16Be,
S16Le,
S16Be,
U24Le,
U24Be,
S24Le,
S24Be,
U32Le,
U32Be,
S32Le,
S32Be,
FloatLe,
FloatBe,
DoubleLe,
DoubleBe,
U16,
S16,
U24,
S24,
U32,
S32,
Float,
Double,
}Variants§
U8
S8
U16Le
U16Be
S16Le
S16Be
U24Le
U24Be
S24Le
S24Be
U32Le
U32Be
S32Le
S32Be
FloatLe
FloatBe
DoubleLe
DoubleBe
U16
S16
U24
S24
U32
S32
Float
Double
Trait Implementations§
Source§impl Clone for AudioFormat
impl Clone for AudioFormat
Source§fn clone(&self) -> AudioFormat
fn clone(&self) -> AudioFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AudioFormat
impl Debug for AudioFormat
Source§impl Display for AudioFormat
impl Display for AudioFormat
Source§impl Hash for AudioFormat
impl Hash for AudioFormat
Source§impl PartialEq for AudioFormat
impl PartialEq for AudioFormat
impl Copy for AudioFormat
impl Eq for AudioFormat
impl StructuralPartialEq for AudioFormat
Auto Trait Implementations§
impl Freeze for AudioFormat
impl RefUnwindSafe for AudioFormat
impl Send for AudioFormat
impl Sync for AudioFormat
impl Unpin for AudioFormat
impl UnwindSafe for AudioFormat
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