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