[][src]Struct passwords::analyzer::AnalyzedPassword

pub struct AnalyzedPassword { /* fields omitted */ }

The struct of an analysis.

Implementations

impl AnalyzedPassword[src]

pub fn password(&self) -> &str[src]

pub fn length(&self) -> usize[src]

pub fn spaces_count(&self) -> usize[src]

pub fn numbers_count(&self) -> usize[src]

pub fn lowercase_letters_count(&self) -> usize[src]

pub fn uppercase_letters_count(&self) -> usize[src]

pub fn symbols_count(&self) -> usize[src]

pub fn other_characters_count(&self) -> usize[src]

pub fn consecutive_count(&self) -> usize[src]

pub fn non_consecutive_count(&self) -> usize[src]

pub fn progressive_count(&self) -> usize[src]

pub fn into_password(self) -> String[src]

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

Trait Implementations

impl Clone for AnalyzedPassword[src]

impl Debug for AnalyzedPassword[src]

impl PartialEq<AnalyzedPassword> for AnalyzedPassword[src]

impl StructuralPartialEq for AnalyzedPassword[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,