[][src]Enum oxipng::Deflaters

pub enum Deflaters {
    Zlib {
        compression: IndexSet<u8>,
        strategies: IndexSet<u8>,
        window: u8,
    },
    Zopfli,
    Libdeflater,
}

DEFLATE algorithms supported by oxipng

Variants

Zlib

Use the Zlib/Miniz DEFLATE implementation

Fields of Zlib

compression: IndexSet<u8>

Which zlib compression levels to try on the file (1-9)

Default: 9

strategies: IndexSet<u8>

Which zlib compression strategies to try on the file (0-3)

Default: 0-3

window: u8

Window size to use when compressing the file, as 2^window bytes.

Doesn't affect compression but may affect speed and memory usage. 8-15 are valid values.

Default: 15

Zopfli

Use the better but slower Zopfli implementation

Libdeflater

Use libdeflater.

Trait Implementations

impl Clone for Deflaters[src]

impl Debug for Deflaters[src]

impl PartialEq<Deflaters> for Deflaters[src]

impl StructuralPartialEq for Deflaters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.