[][src]Struct passwords::PasswordGenerator

pub struct PasswordGenerator {
    pub length: usize,
    pub numbers: bool,
    pub lowercase_letters: bool,
    pub uppercase_letters: bool,
    pub symbols: bool,
    pub strict: bool,
}

This struct can help you generate passwords.

Fields

length: usize

The length of the generated passwords.

numbers: bool

Passwords are allowed to, or must if the strict is true, contain a number or numbers. Numbers are 123456789. (0 is excluded)

lowercase_letters: bool

Passwords are allowed to, or must if the strict is true, contain a lowercase letter or lowercase letters. Lowercase letters are abcdefghjkmnpqrstuvwxyz. (i, l, o are excluded)

uppercase_letters: bool

Passwords are allowed to, or must if the strict is true, contain an uppercase letter or uppercase letters. Uppercase letters are ABCDEFGHJKMNPQRSTUVWXYZ. (I, L, O are excluded)

symbols: bool

Passwords are allowed to, or must if the strict is true, contain a symbol or symbols. Symbols are !@#$%^&*()+_-=}{[]:;"/?.><,~.

strict: bool

Whether the password rules are strict.

Methods

impl PasswordGenerator[src]

pub fn generate(&self, count: usize) -> Result<Vec<String>, &'static str>[src]

Generate random passwords.

pub fn generate_one(&self) -> Result<String, &'static str>[src]

Generate a random password.

Trait Implementations

impl Clone for PasswordGenerator[src]

impl Debug for PasswordGenerator[src]

impl PartialEq<PasswordGenerator> for PasswordGenerator[src]

impl StructuralPartialEq for PasswordGenerator[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>,