pub struct Config {
    pub min_length: u8,
    pub min_length_nul: u8,
    pub strict_nul: bool,
    pub heuristic: Heuristic,
}
Expand description

Configure the string finding heuristics.

Fields

min_length: u8

Minimum string length to accept as a valid string.

min_length_nul: u8

Minimum string length when there is a nul terminator. Can have a lower threshold as having a nul terminator increases confidence that this is a c string literal.

strict_nul: bool

When true, requires any found string to be terminated by a nul terminator. A nul terminator increases confidence that this is indeed a c string literal.

heuristic: Heuristic

Heuristic to use to validate sequences.

Implementations

Constructs the enumerator with this configuration.

Given the base argument the relative virtual address of the bytes slice.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.