[][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 spaces: bool,
    pub exclude_similar_characters: bool,
    pub strict: bool,
}

This struct can help you generate passwords.

Fields

length: usize

The length of the generated passwords.

Default: 8

numbers: bool

Passwords are allowed to, or must if the strict is true, contain a number or numbers.

Default: true

lowercase_letters: bool

Passwords are allowed to, or must if the strict is true, contain a lowercase letter or lowercase letters.

Default: true

uppercase_letters: bool

Passwords are allowed to, or must if the strict is true, contain an uppercase letter or uppercase letters.

Default: false

symbols: bool

Passwords are allowed to, or must if the strict is true, contain a symbol or symbols.

Default: false

spaces: bool

Passwords are allowed to, or must if the strict is true, contain a space or spaces.

Default: false

exclude_similar_characters: bool

Whether to exclude similar characters, iI1loO0"'`|.

Default: false

strict: bool

Whether the password rules are strict.

Default: false

Methods

impl PasswordGenerator[src]

pub const fn new() -> PasswordGenerator[src]

Create a PasswordGenerator instance.

This example is not tested
PasswordGenerator {
    length: 8,
    numbers: true,
    lowercase_letters: true,
    uppercase_letters: false,
    symbols: false,
    spaces: false,
    exclude_similar_characters: false,
    strict: false,
}

pub const fn length(self, length: usize) -> PasswordGenerator[src]

The length of the generated passwords.

pub const fn numbers(self, numbers: bool) -> PasswordGenerator[src]

Passwords are allowed to, or must if the strict is true, contain a number or numbers.

pub const fn lowercase_letters(
    self,
    lowercase_letters: bool
) -> PasswordGenerator
[src]

Passwords are allowed to, or must if the strict is true, contain a lowercase letter or lowercase letters.

pub const fn uppercase_letters(
    self,
    uppercase_letters: bool
) -> PasswordGenerator
[src]

Passwords are allowed to, or must if the strict is true, contain an uppercase letter or uppercase letters.

pub const fn symbols(self, symbols: bool) -> PasswordGenerator[src]

Passwords are allowed to, or must if the strict is true, contain a symbol or symbols.

pub const fn spaces(self, space: bool) -> PasswordGenerator[src]

Passwords are allowed to, or must if the strict is true, contain a space or spaces.

pub const fn exclude_similar_characters(
    self,
    exclude_similar_characters: bool
) -> PasswordGenerator
[src]

Whether to exclude similar characters? The excluded similar characters set is iI1loO0"'`|.

pub const fn strict(self, strict: bool) -> PasswordGenerator[src]

Whether the password rules are strict.

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.

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

Try to create an iterator for the purpose of reusing.

Trait Implementations

impl Clone for PasswordGenerator[src]

impl Debug for PasswordGenerator[src]

impl Default 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>,