passg-lib 0.1.0

Generate pseudo-random passwords
Documentation
1
2
3
4
5
6
7
8
//! This module defines the error that might occur while using passg.

/// These are the errors that can occur while generating a password
#[derive(Debug, Clone, PartialEq, Eq, Hash, thiserror::Error)]
pub enum Error {
    #[error("could not parse")]
    ParseError(String),
}