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
sourceimpl Clone for SpecialOptions
impl Clone for SpecialOptions
sourcefn clone(&self) -> SpecialOptions
fn clone(&self) -> SpecialOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SpecialOptions
impl Debug for SpecialOptions
sourceimpl Default for SpecialOptions
impl Default for SpecialOptions
sourcefn default() -> SpecialOptions
fn default() -> SpecialOptions
Returns the “default value” for a type. Read more
sourceimpl Hash for SpecialOptions
impl Hash for SpecialOptions
sourceimpl PartialEq<SpecialOptions> for SpecialOptions
impl PartialEq<SpecialOptions> for SpecialOptions
impl Copy for SpecialOptions
impl Eq for SpecialOptions
impl StructuralEq for SpecialOptions
impl StructuralPartialEq for SpecialOptions
Auto Trait Implementations
impl RefUnwindSafe for SpecialOptions
impl Send for SpecialOptions
impl Sync for SpecialOptions
impl Unpin for SpecialOptions
impl UnwindSafe for SpecialOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more