pub enum AudioFileFormat {
Show 16 variants
OGG_VORBIS_96 = 0,
OGG_VORBIS_160 = 1,
OGG_VORBIS_320 = 2,
MP3_256 = 3,
MP3_320 = 4,
MP3_160 = 5,
MP3_96 = 6,
MP3_160_ENC = 7,
AAC_24 = 8,
AAC_48 = 9,
AAC_160 = 10,
AAC_320 = 11,
MP4_128 = 12,
OTHER5 = 13,
FLAC_FLAC = 16,
UNKNOWN_FORMAT = 255,
}Variants§
OGG_VORBIS_96 = 0
OGG_VORBIS_160 = 1
OGG_VORBIS_320 = 2
MP3_256 = 3
MP3_320 = 4
MP3_160 = 5
MP3_96 = 6
MP3_160_ENC = 7
AAC_24 = 8
AAC_48 = 9
AAC_160 = 10
AAC_320 = 11
MP4_128 = 12
OTHER5 = 13
FLAC_FLAC = 16
UNKNOWN_FORMAT = 255
Trait Implementations§
source§impl Enum for Format
impl Enum for Format
source§impl EnumFull for Format
impl EnumFull for Format
source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
impl Copy for Format
impl Eq for Format
impl StructuralPartialEq for Format
Auto Trait Implementations§
impl Freeze for Format
impl RefUnwindSafe for Format
impl Send for Format
impl Sync for Format
impl Unpin for Format
impl UnwindSafe for Format
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.