#[repr(u32)]pub enum AudioFileFormat {
AFF_NONE = 0,
AFF_CHANNELCODEC_FORMAT = 1,
AFF_WAVE_FORMAT = 2,
AFF_MP3_16KBIT_FORMAT = 3,
AFF_MP3_32KBIT_FORMAT = 4,
AFF_MP3_64KBIT_FORMAT = 5,
AFF_MP3_128KBIT_FORMAT = 6,
AFF_MP3_256KBIT_FORMAT = 7,
AFF_MP3_320KBIT_FORMAT = 8,
}Variants§
AFF_NONE = 0
AFF_CHANNELCODEC_FORMAT = 1
AFF_WAVE_FORMAT = 2
AFF_MP3_16KBIT_FORMAT = 3
AFF_MP3_32KBIT_FORMAT = 4
AFF_MP3_64KBIT_FORMAT = 5
AFF_MP3_128KBIT_FORMAT = 6
AFF_MP3_256KBIT_FORMAT = 7
AFF_MP3_320KBIT_FORMAT = 8
Trait Implementations§
Source§impl Clone for AudioFileFormat
impl Clone for AudioFileFormat
Source§fn clone(&self) -> AudioFileFormat
fn clone(&self) -> AudioFileFormat
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 AudioFileFormat
impl Debug for AudioFileFormat
Source§impl Hash for AudioFileFormat
impl Hash for AudioFileFormat
Source§impl PartialEq for AudioFileFormat
impl PartialEq for AudioFileFormat
impl Copy for AudioFileFormat
impl Eq for AudioFileFormat
impl StructuralPartialEq for AudioFileFormat
Auto Trait Implementations§
impl Freeze for AudioFileFormat
impl RefUnwindSafe for AudioFileFormat
impl Send for AudioFileFormat
impl Sync for AudioFileFormat
impl Unpin for AudioFileFormat
impl UnwindSafe for AudioFileFormat
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