pub struct MasterPasswordUnlockResponseModel {
pub kdf: Box<MasterPasswordUnlockKdfResponseModel>,
pub master_key_encrypted_user_key: Option<String>,
pub salt: Option<String>,
}
Fields§
§kdf: Box<MasterPasswordUnlockKdfResponseModel>
§master_key_encrypted_user_key: Option<String>
§salt: Option<String>
Implementations§
Source§impl MasterPasswordUnlockResponseModel
impl MasterPasswordUnlockResponseModel
pub fn new( kdf: MasterPasswordUnlockKdfResponseModel, master_key_encrypted_user_key: Option<String>, salt: Option<String>, ) -> MasterPasswordUnlockResponseModel
Trait Implementations§
Source§impl Clone for MasterPasswordUnlockResponseModel
impl Clone for MasterPasswordUnlockResponseModel
Source§fn clone(&self) -> MasterPasswordUnlockResponseModel
fn clone(&self) -> MasterPasswordUnlockResponseModel
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 Default for MasterPasswordUnlockResponseModel
impl Default for MasterPasswordUnlockResponseModel
Source§fn default() -> MasterPasswordUnlockResponseModel
fn default() -> MasterPasswordUnlockResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MasterPasswordUnlockResponseModel
impl<'de> Deserialize<'de> for MasterPasswordUnlockResponseModel
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 MasterPasswordUnlockResponseModel
impl PartialEq for MasterPasswordUnlockResponseModel
Source§fn eq(&self, other: &MasterPasswordUnlockResponseModel) -> bool
fn eq(&self, other: &MasterPasswordUnlockResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MasterPasswordUnlockResponseModel
Auto Trait Implementations§
impl Freeze for MasterPasswordUnlockResponseModel
impl RefUnwindSafe for MasterPasswordUnlockResponseModel
impl Send for MasterPasswordUnlockResponseModel
impl Sync for MasterPasswordUnlockResponseModel
impl Unpin for MasterPasswordUnlockResponseModel
impl UnwindSafe for MasterPasswordUnlockResponseModel
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