//!
//! This module contains user structs and traits
//!
use ;
/// This enum provides the available hashing methods.
/// The hashing method indicate how the user's password is encrypted/hashed. This may change in future
/// This is the type which is stored inside the users file. Aka. an array of users
pub type Users = ;
/// This contains the bare information of a user which is for now only the username and the password
/// **Note: It is not planed to add any permission information here**