pub struct UsersConfig {
pub users: HashMap<String, UserRecord>,
}Expand description
Full users config stored in users.json.
Fields§
§users: HashMap<String, UserRecord>Trait Implementations§
Source§impl Clone for UsersConfig
impl Clone for UsersConfig
Source§fn clone(&self) -> UsersConfig
fn clone(&self) -> UsersConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UsersConfig
impl Debug for UsersConfig
Source§impl<'de> Deserialize<'de> for UsersConfig
impl<'de> Deserialize<'de> for UsersConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UsersConfig
impl RefUnwindSafe for UsersConfig
impl Send for UsersConfig
impl Sync for UsersConfig
impl Unpin for UsersConfig
impl UnsafeUnpin for UsersConfig
impl UnwindSafe for UsersConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more