Enum deflate::SpecialOptions
source · pub enum SpecialOptions {
Normal,
_ForceFixed,
_ForceStored,
}
Expand description
Enum allowing some special options (not implemented yet)!
Variants§
Normal
Compress normally.
_ForceFixed
Force fixed huffman tables. (Unimplemented!).
_ForceStored
Force stored (uncompressed) blocks only. (Unimplemented!).
Trait Implementations§
source§impl Clone for SpecialOptions
impl Clone for SpecialOptions
source§fn clone(&self) -> SpecialOptions
fn clone(&self) -> SpecialOptions
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 SpecialOptions
impl Debug for SpecialOptions
source§impl Default for SpecialOptions
impl Default for SpecialOptions
source§fn default() -> SpecialOptions
fn default() -> SpecialOptions
Returns the “default value” for a type. Read more
source§impl Hash for SpecialOptions
impl Hash for SpecialOptions
source§impl PartialEq<SpecialOptions> for SpecialOptions
impl PartialEq<SpecialOptions> for SpecialOptions
source§fn eq(&self, other: &SpecialOptions) -> bool
fn eq(&self, other: &SpecialOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.