Trait UserRead
Source pub trait UserRead {
// Required methods
fn get_username(&self) -> Option<&str>;
fn get_uid(&self) -> u32;
fn get_gid(&self) -> u32;
fn get_password(&self) -> Option<&str>;
fn get_gecos(&self) -> Option<&Gecos>;
fn get_home_dir(&self) -> Option<&str>;
fn get_shell_path(&self) -> Option<&str>;
fn get_full_name(&self) -> Option<&str>;
fn get_room(&self) -> Option<&str>;
fn get_phone_work(&self) -> Option<&str>;
fn get_phone_home(&self) -> Option<&str>;
fn get_other(&self) -> Option<&Vec<String>>;
}