#[repr(u32)]pub enum SoundIoFormat {
Show 19 variants
SoundIoFormatInvalid = 0,
SoundIoFormatS8 = 1,
SoundIoFormatU8 = 2,
SoundIoFormatS16LE = 3,
SoundIoFormatS16BE = 4,
SoundIoFormatU16LE = 5,
SoundIoFormatU16BE = 6,
SoundIoFormatS24LE = 7,
SoundIoFormatS24BE = 8,
SoundIoFormatU24LE = 9,
SoundIoFormatU24BE = 10,
SoundIoFormatS32LE = 11,
SoundIoFormatS32BE = 12,
SoundIoFormatU32LE = 13,
SoundIoFormatU32BE = 14,
SoundIoFormatFloat32LE = 15,
SoundIoFormatFloat32BE = 16,
SoundIoFormatFloat64LE = 17,
SoundIoFormatFloat64BE = 18,
}Variants§
SoundIoFormatInvalid = 0
SoundIoFormatS8 = 1
SoundIoFormatU8 = 2
SoundIoFormatS16LE = 3
SoundIoFormatS16BE = 4
SoundIoFormatU16LE = 5
SoundIoFormatU16BE = 6
SoundIoFormatS24LE = 7
SoundIoFormatS24BE = 8
SoundIoFormatU24LE = 9
SoundIoFormatU24BE = 10
SoundIoFormatS32LE = 11
SoundIoFormatS32BE = 12
SoundIoFormatU32LE = 13
SoundIoFormatU32BE = 14
SoundIoFormatFloat32LE = 15
SoundIoFormatFloat32BE = 16
SoundIoFormatFloat64LE = 17
SoundIoFormatFloat64BE = 18
Trait Implementations§
Source§impl Clone for SoundIoFormat
impl Clone for SoundIoFormat
Source§fn clone(&self) -> SoundIoFormat
fn clone(&self) -> SoundIoFormat
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 moreimpl Copy for SoundIoFormat
Auto Trait Implementations§
impl Freeze for SoundIoFormat
impl RefUnwindSafe for SoundIoFormat
impl Send for SoundIoFormat
impl Sync for SoundIoFormat
impl Unpin for SoundIoFormat
impl UnwindSafe for SoundIoFormat
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