Struct flate2::Compression [−][src]
pub struct Compression(_);
When compressing data, the compression level can be specified by a value in this enum.
Implementations
impl Compression
[src]
impl Compression
[src]pub const fn new(level: u32) -> Compression
[src]
Creates a new description of the compression level with an explicitly specified integer.
The integer here is typically on a scale of 0-9 where 0 means “no compression” and 9 means “take as long as you’d like”.
pub const fn none() -> Compression
[src]
No compression is to be performed, this may actually inflate data slightly when encoding.
pub const fn fast() -> Compression
[src]
Optimize for the best speed of encoding.
pub const fn best() -> Compression
[src]
Optimize for the size of data being encoded.
pub fn level(&self) -> u32
[src]
Returns an integer representing the compression level, typically on a scale of 0-9
Trait Implementations
impl Clone for Compression
[src]
impl Clone for Compression
[src]fn clone(&self) -> Compression
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for Compression
[src]
impl Default for Compression
[src]fn default() -> Compression
[src]
impl PartialEq<Compression> for Compression
[src]
impl PartialEq<Compression> for Compression
[src]