pub struct AppleIdentityProvider {Show 17 fields
pub bundle_id: Option<String>,
pub button_text: Option<String>,
pub key_id: Option<Uuid>,
pub scope: Option<String>,
pub services_id: Option<String>,
pub team_id: Option<String>,
pub data: Option<HashMap<String, Value>>,
pub application_configuration: Option<HashMap<String, AppleApplicationConfiguration>>,
pub debug: Option<bool>,
pub id: Option<Uuid>,
pub insert_instant: Option<i64>,
pub lambda_configuration: Option<Box<ProviderLambdaConfiguration>>,
pub last_update_instant: Option<i64>,
pub linking_strategy: Option<IdentityProviderLinkingStrategy>,
pub name: Option<String>,
pub tenant_configuration: Option<HashMap<String, IdentityProviderTenantConfiguration>>,
pub type: Option<IdentityProviderType>,
}
Expand description
AppleIdentityProvider :
Fields§
§bundle_id: Option<String>
§key_id: Option<Uuid>
§scope: Option<String>
§services_id: Option<String>
§team_id: Option<String>
§data: Option<HashMap<String, Value>>
§application_configuration: Option<HashMap<String, AppleApplicationConfiguration>>
§debug: Option<bool>
§id: Option<Uuid>
§insert_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
lambda_configuration: Option<Box<ProviderLambdaConfiguration>>
§last_update_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
linking_strategy: Option<IdentityProviderLinkingStrategy>
§name: Option<String>
§tenant_configuration: Option<HashMap<String, IdentityProviderTenantConfiguration>>
§type: Option<IdentityProviderType>
Implementations§
source§impl AppleIdentityProvider
impl AppleIdentityProvider
sourcepub fn new() -> AppleIdentityProvider
pub fn new() -> AppleIdentityProvider
Trait Implementations§
source§impl Clone for AppleIdentityProvider
impl Clone for AppleIdentityProvider
source§fn clone(&self) -> AppleIdentityProvider
fn clone(&self) -> AppleIdentityProvider
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 Debug for AppleIdentityProvider
impl Debug for AppleIdentityProvider
source§impl Default for AppleIdentityProvider
impl Default for AppleIdentityProvider
source§fn default() -> AppleIdentityProvider
fn default() -> AppleIdentityProvider
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AppleIdentityProvider
impl<'de> Deserialize<'de> for AppleIdentityProvider
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 AppleIdentityProvider
impl PartialEq for AppleIdentityProvider
source§fn eq(&self, other: &AppleIdentityProvider) -> bool
fn eq(&self, other: &AppleIdentityProvider) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for AppleIdentityProvider
impl Serialize for AppleIdentityProvider
impl StructuralPartialEq for AppleIdentityProvider
Auto Trait Implementations§
impl RefUnwindSafe for AppleIdentityProvider
impl Send for AppleIdentityProvider
impl Sync for AppleIdentityProvider
impl Unpin for AppleIdentityProvider
impl UnwindSafe for AppleIdentityProvider
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