pub enum Format {
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,
FLAC_FLAC = 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
FLAC_FLAC = 16
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