pub struct UserDecryptionOptionsResponse {
pub master_password_unlock: Option<MasterPasswordUnlockData>,
pub trusted_device_option: Option<TrustedDeviceUserDecryptionOption>,
pub key_connector_option: Option<KeyConnectorUserDecryptionOption>,
pub webauthn_prf_option: Option<WebAuthnPrfUserDecryptionOption>,
}Expand description
SDK domain model for user decryption options. Provides the various methods available to unlock a user’s vault.
Fields§
§master_password_unlock: Option<MasterPasswordUnlockData>Master password unlock option. None if user doesn’t have a master password.
trusted_device_option: Option<TrustedDeviceUserDecryptionOption>Trusted Device decryption option.
key_connector_option: Option<KeyConnectorUserDecryptionOption>Key Connector decryption option. Mutually exclusive with Trusted Device option.
webauthn_prf_option: Option<WebAuthnPrfUserDecryptionOption>WebAuthn PRF decryption option.
Trait Implementations§
Source§impl Clone for UserDecryptionOptionsResponse
impl Clone for UserDecryptionOptionsResponse
Source§fn clone(&self) -> UserDecryptionOptionsResponse
fn clone(&self) -> UserDecryptionOptionsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for UserDecryptionOptionsResponse
impl<'de> Deserialize<'de> for UserDecryptionOptionsResponse
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 UserDecryptionOptionsResponse
impl PartialEq for UserDecryptionOptionsResponse
Source§fn eq(&self, other: &UserDecryptionOptionsResponse) -> bool
fn eq(&self, other: &UserDecryptionOptionsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UserDecryptionOptionsResponse
Auto Trait Implementations§
impl Freeze for UserDecryptionOptionsResponse
impl RefUnwindSafe for UserDecryptionOptionsResponse
impl Send for UserDecryptionOptionsResponse
impl Sync for UserDecryptionOptionsResponse
impl Unpin for UserDecryptionOptionsResponse
impl UnsafeUnpin for UserDecryptionOptionsResponse
impl UnwindSafe for UserDecryptionOptionsResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more