PassablewordResult

Type Alias PassablewordResult 

Source
pub type PassablewordResult = Result<(), PasswordError>;
Expand description

The result type that will be returned from all public functions. It’s simply a Result type that either returns Ok or a PasswordError.

Aliased Type§

pub enum PassablewordResult {
    Ok(()),
    Err(PasswordError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(PasswordError)

Contains the error value