#[repr(u8)]pub enum Mp3VbrMode {
Off = 0,
Mt = 1,
Rh = 2,
Abr = 3,
Mtrh = 4,
}
Expand description
- The VBR mode for MP3. If you turn VBR on, the audio quality for MP3 will be a little bit worse.
Variants§
Off = 0
- This option disables the VBR mode.
Mt = 1
Rh = 2
Abr = 3
Mtrh = 4
- This option is used most commonly.
Implementations§
Source§impl Mp3VbrMode
impl Mp3VbrMode
pub fn to_lame_vbr_mode(&self) -> VbrMode
Trait Implementations§
Source§impl Clone for Mp3VbrMode
impl Clone for Mp3VbrMode
Source§fn clone(&self) -> Mp3VbrMode
fn clone(&self) -> Mp3VbrMode
Returns a copy 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 Mp3VbrMode
impl Debug for Mp3VbrMode
Source§impl PartialEq for Mp3VbrMode
impl PartialEq for Mp3VbrMode
impl Copy for Mp3VbrMode
impl StructuralPartialEq for Mp3VbrMode
Auto Trait Implementations§
impl Freeze for Mp3VbrMode
impl RefUnwindSafe for Mp3VbrMode
impl Send for Mp3VbrMode
impl Sync for Mp3VbrMode
impl Unpin for Mp3VbrMode
impl UnwindSafe for Mp3VbrMode
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