pub enum CompressionLevel {
Slow,
Default,
Fast,
}Expand description
Set compression level of the compression algorithm. This maps to different values depending on the chosen algortihm.
Variants§
Slow
Slower than default, higher compression. Might be useful for big amount of data which requires heavier compression.
Default
A good ratio of compression ratio to cpu time.
Fast
Accept worse compression for speed. Useful for easily compressable data with many repetitions.
Trait Implementations§
Source§impl Clone for CompressionLevel
impl Clone for CompressionLevel
Source§fn clone(&self) -> CompressionLevel
fn clone(&self) -> CompressionLevel
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 CompressionLevel
impl Debug for CompressionLevel
impl Copy for CompressionLevel
Auto Trait Implementations§
impl Freeze for CompressionLevel
impl RefUnwindSafe for CompressionLevel
impl Send for CompressionLevel
impl Sync for CompressionLevel
impl Unpin for CompressionLevel
impl UnwindSafe for CompressionLevel
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