pub enum FlacCompression {
Level0 = 0,
Level1 = 1,
Level2 = 2,
Level3 = 3,
Level4 = 4,
Level5 = 5,
Level6 = 6,
Level7 = 7,
Level8 = 8,
}
Expand description
§The compression level of the FLAC file
A higher number means less file size. Default compression level is 5
Variants§
Level0 = 0
Almost no compression
Level1 = 1
Level2 = 2
Level3 = 3
Level4 = 4
Level5 = 5
Level6 = 6
Level7 = 7
Level8 = 8
Maximum compression
Trait Implementations§
Source§impl Clone for FlacCompression
impl Clone for FlacCompression
Source§fn clone(&self) -> FlacCompression
fn clone(&self) -> FlacCompression
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 FlacCompression
impl Debug for FlacCompression
Source§impl PartialEq for FlacCompression
impl PartialEq for FlacCompression
impl Copy for FlacCompression
impl StructuralPartialEq for FlacCompression
Auto Trait Implementations§
impl Freeze for FlacCompression
impl RefUnwindSafe for FlacCompression
impl Send for FlacCompression
impl Sync for FlacCompression
impl Unpin for FlacCompression
impl UnwindSafe for FlacCompression
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