#[non_exhaustive]pub struct VerifiedAccessTrustProviderCondensed {
pub verified_access_trust_provider_id: Option<String>,
pub description: Option<String>,
pub trust_provider_type: Option<TrustProviderType>,
pub user_trust_provider_type: Option<UserTrustProviderType>,
pub device_trust_provider_type: Option<DeviceTrustProviderType>,
}
Expand description
Condensed information about a trust provider.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.verified_access_trust_provider_id: Option<String>
The ID of the trust provider.
description: Option<String>
The description of trust provider.
trust_provider_type: Option<TrustProviderType>
The type of trust provider (user- or device-based).
user_trust_provider_type: Option<UserTrustProviderType>
The type of user-based trust provider.
device_trust_provider_type: Option<DeviceTrustProviderType>
The type of device-based trust provider.
Implementations§
source§impl VerifiedAccessTrustProviderCondensed
impl VerifiedAccessTrustProviderCondensed
sourcepub fn verified_access_trust_provider_id(&self) -> Option<&str>
pub fn verified_access_trust_provider_id(&self) -> Option<&str>
The ID of the trust provider.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of trust provider.
sourcepub fn trust_provider_type(&self) -> Option<&TrustProviderType>
pub fn trust_provider_type(&self) -> Option<&TrustProviderType>
The type of trust provider (user- or device-based).
sourcepub fn user_trust_provider_type(&self) -> Option<&UserTrustProviderType>
pub fn user_trust_provider_type(&self) -> Option<&UserTrustProviderType>
The type of user-based trust provider.
sourcepub fn device_trust_provider_type(&self) -> Option<&DeviceTrustProviderType>
pub fn device_trust_provider_type(&self) -> Option<&DeviceTrustProviderType>
The type of device-based trust provider.
source§impl VerifiedAccessTrustProviderCondensed
impl VerifiedAccessTrustProviderCondensed
sourcepub fn builder() -> VerifiedAccessTrustProviderCondensedBuilder
pub fn builder() -> VerifiedAccessTrustProviderCondensedBuilder
Creates a new builder-style object to manufacture VerifiedAccessTrustProviderCondensed
.
Trait Implementations§
source§impl Clone for VerifiedAccessTrustProviderCondensed
impl Clone for VerifiedAccessTrustProviderCondensed
source§fn clone(&self) -> VerifiedAccessTrustProviderCondensed
fn clone(&self) -> VerifiedAccessTrustProviderCondensed
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 PartialEq for VerifiedAccessTrustProviderCondensed
impl PartialEq for VerifiedAccessTrustProviderCondensed
source§fn eq(&self, other: &VerifiedAccessTrustProviderCondensed) -> bool
fn eq(&self, other: &VerifiedAccessTrustProviderCondensed) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VerifiedAccessTrustProviderCondensed
Auto Trait Implementations§
impl Freeze for VerifiedAccessTrustProviderCondensed
impl RefUnwindSafe for VerifiedAccessTrustProviderCondensed
impl Send for VerifiedAccessTrustProviderCondensed
impl Sync for VerifiedAccessTrustProviderCondensed
impl Unpin for VerifiedAccessTrustProviderCondensed
impl UnwindSafe for VerifiedAccessTrustProviderCondensed
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> 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 moreCreates a shared type from an unshared type.