pub struct UserPwdHash {
pub hash: String,
pub salt: String,
pub undocumented: BTreeMap<String, JsonObject>,
}Fields§
§hash: String§salt: String§undocumented: BTreeMap<String, JsonObject>Trait Implementations§
Source§impl Clone for UserPwdHash
impl Clone for UserPwdHash
Source§fn clone(&self) -> UserPwdHash
fn clone(&self) -> UserPwdHash
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 UserPwdHash
impl Debug for UserPwdHash
Source§impl<'de> Deserialize<'de> for UserPwdHash
impl<'de> Deserialize<'de> for UserPwdHash
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
Source§impl PartialEq for UserPwdHash
impl PartialEq for UserPwdHash
Source§impl Serialize for UserPwdHash
impl Serialize for UserPwdHash
impl StructuralPartialEq for UserPwdHash
Auto Trait Implementations§
impl Freeze for UserPwdHash
impl RefUnwindSafe for UserPwdHash
impl Send for UserPwdHash
impl Sync for UserPwdHash
impl Unpin for UserPwdHash
impl UnwindSafe for UserPwdHash
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