credent_model 0.4.1

Data types to represent application credentials.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(missing_debug_implementations, missing_docs)]

//! Data types to represent application credentials.

mod credentials;
mod password;
mod profile;
mod profiles;
mod username;

pub use crate::{
    credentials::Credentials, password::Password, profile::Profile, profiles::Profiles,
    username::Username,
};