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),
}