[][src]Enum xz::stream::MatchFinder

pub enum MatchFinder {
    HashChain3,
    HashChain4,
    BinaryTree2,
    BinaryTree3,
    BinaryTree4,
}

Match finders

Match finder has major effect on both speed and compression ratio. Usually hash chains are faster than binary trees.

If you will use SyncFlush often, the hash chains may be a better choice, because binary trees get much higher compression ratio penalty with SyncFlush.

The memory usage formulas are only rough estimates, which are closest to reality when dict_size is a power of two. The formulas are more complex in reality, and can also change a little between liblzma versions.

Variants

HashChain3

Hash Chain with 2- and 3-byte hashing

HashChain4

Hash Chain with 2-, 3-, and 4-byte hashing

BinaryTree2

Binary Tree with 2-byte hashing

BinaryTree3

Binary Tree with 2- and 3-byte hashing

BinaryTree4

Binary Tree with 2-, 3-, and 4-byte hashing

Implementations

impl MatchFinder[src]

pub fn is_supported(&self) -> bool[src]

Test if this match finder is supported in this build of liblzma.

Trait Implementations

impl Clone for MatchFinder[src]

impl Copy for MatchFinder[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> 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.