Enum deflate::MatchingType [] [src]

pub enum MatchingType {
    Lazy,
    Greedy,
}

An enum describing whether we use lazy or greedy matching.

Variants

Use lazy matching: after finding a match, the next input byte is checked, to see if there is a better match starting at that byte.

Use greedy matching: the matching algorithm simply uses a match right away if found.

Trait Implementations

impl Clone for MatchingType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MatchingType
[src]

impl Debug for MatchingType
[src]

Formats the value using the given formatter.