pub struct CommonUnlockDataRequestModel {
pub emergency_access_unlock_data: Option<Vec<EmergencyAccessWithIdRequestModel>>,
pub organization_account_recovery_unlock_data: Option<Vec<ResetPasswordWithOrgIdRequestModel>>,
pub passkey_unlock_data: Option<Vec<WebAuthnLoginRotateKeyRequestModel>>,
pub device_key_unlock_data: Option<Vec<OtherDeviceKeysUpdateRequestModel>>,
pub v2_upgrade_token: Option<Box<V2UpgradeTokenRequestModel>>,
}Fields§
§emergency_access_unlock_data: Option<Vec<EmergencyAccessWithIdRequestModel>>§organization_account_recovery_unlock_data: Option<Vec<ResetPasswordWithOrgIdRequestModel>>§passkey_unlock_data: Option<Vec<WebAuthnLoginRotateKeyRequestModel>>§device_key_unlock_data: Option<Vec<OtherDeviceKeysUpdateRequestModel>>§v2_upgrade_token: Option<Box<V2UpgradeTokenRequestModel>>Implementations§
Source§impl CommonUnlockDataRequestModel
impl CommonUnlockDataRequestModel
pub fn new( emergency_access_unlock_data: Option<Vec<EmergencyAccessWithIdRequestModel>>, organization_account_recovery_unlock_data: Option<Vec<ResetPasswordWithOrgIdRequestModel>>, passkey_unlock_data: Option<Vec<WebAuthnLoginRotateKeyRequestModel>>, device_key_unlock_data: Option<Vec<OtherDeviceKeysUpdateRequestModel>>, ) -> CommonUnlockDataRequestModel
Trait Implementations§
Source§impl Clone for CommonUnlockDataRequestModel
impl Clone for CommonUnlockDataRequestModel
Source§fn clone(&self) -> CommonUnlockDataRequestModel
fn clone(&self) -> CommonUnlockDataRequestModel
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 CommonUnlockDataRequestModel
impl Debug for CommonUnlockDataRequestModel
Source§impl Default for CommonUnlockDataRequestModel
impl Default for CommonUnlockDataRequestModel
Source§fn default() -> CommonUnlockDataRequestModel
fn default() -> CommonUnlockDataRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommonUnlockDataRequestModel
impl<'de> Deserialize<'de> for CommonUnlockDataRequestModel
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 CommonUnlockDataRequestModel
impl PartialEq for CommonUnlockDataRequestModel
Source§fn eq(&self, other: &CommonUnlockDataRequestModel) -> bool
fn eq(&self, other: &CommonUnlockDataRequestModel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommonUnlockDataRequestModel
Auto Trait Implementations§
impl Freeze for CommonUnlockDataRequestModel
impl RefUnwindSafe for CommonUnlockDataRequestModel
impl Send for CommonUnlockDataRequestModel
impl Sync for CommonUnlockDataRequestModel
impl Unpin for CommonUnlockDataRequestModel
impl UnsafeUnpin for CommonUnlockDataRequestModel
impl UnwindSafe for CommonUnlockDataRequestModel
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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