Struct zxcvbn::matching::Match [] [src]

pub struct Match {
    pub i: usize,
    pub j: usize,
    pub token: String,
    pub pattern: MatchPattern,
    pub guesses: Option<u64>,
}

A match of a predictable pattern in the password.

Fields

Beginning of the match.

End of the match.

Token that has been matched.

Pattern type and details used to detect this match.

Estimated number of tries for guessing the match.

Trait Implementations

impl Debug for Match
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Match
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Match
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Default for Match
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for Match

impl Sync for Match