pub struct Compression(/* private fields */);
Expand description
When compressing data, the compression level can be specified by a value in this enum.
Implementations§
Source§impl Compression
impl Compression
Sourcepub fn new(level: u32) -> Compression
pub fn new(level: u32) -> Compression
Create a new compression spec with a specific numeric level (0-9).
Sourcepub fn none() -> Compression
pub fn none() -> Compression
Do not compress.
Sourcepub fn fast() -> Compression
pub fn fast() -> Compression
Optimize for the best speed of encoding.
Sourcepub fn best() -> Compression
pub fn best() -> Compression
Optimize for the size of data being encoded.
Trait Implementations§
Source§impl Clone for Compression
impl Clone for Compression
Source§fn clone(&self) -> Compression
fn clone(&self) -> Compression
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 Compression
impl Debug for Compression
Source§impl Default for Compression
impl Default for Compression
Source§fn default() -> Compression
fn default() -> Compression
Choose the default compression, a balance between speed and size.
impl Copy for Compression
Auto Trait Implementations§
impl Freeze for Compression
impl RefUnwindSafe for Compression
impl Send for Compression
impl Sync for Compression
impl Unpin for Compression
impl UnwindSafe for Compression
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