pub struct AuthIdentityProvider {Show 13 fields
pub created_at: Option<DateTime<Utc>>,
pub id: Option<String>,
pub default_migrated: Option<bool>,
pub type: Option<IdentityProviderType>,
pub saml_enabled: Option<bool>,
pub sso_endpoint: Option<String>,
pub sso_binding: Option<String>,
pub sso_sign_algo: Option<String>,
pub issuer_entity_id: Option<String>,
pub sp_entity_id: Option<String>,
pub sso_signing_cert: Option<String>,
pub priority: Option<f64>,
pub scim_enabled: Option<bool>,
}Fields§
§created_at: Option<DateTime<Utc>>§id: Option<String>§default_migrated: Option<bool>§type: Option<IdentityProviderType>§saml_enabled: Option<bool>§sso_endpoint: Option<String>§sso_binding: Option<String>§sso_sign_algo: Option<String>§issuer_entity_id: Option<String>§sp_entity_id: Option<String>§sso_signing_cert: Option<String>§priority: Option<f64>§scim_enabled: Option<bool>Trait Implementations§
Source§impl Clone for AuthIdentityProvider
impl Clone for AuthIdentityProvider
Source§fn clone(&self) -> AuthIdentityProvider
fn clone(&self) -> AuthIdentityProvider
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 AuthIdentityProvider
impl Debug for AuthIdentityProvider
Source§impl Default for AuthIdentityProvider
impl Default for AuthIdentityProvider
Source§fn default() -> AuthIdentityProvider
fn default() -> AuthIdentityProvider
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthIdentityProviderwhere
AuthIdentityProvider: Default,
impl<'de> Deserialize<'de> for AuthIdentityProviderwhere
AuthIdentityProvider: Default,
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
Auto Trait Implementations§
impl Freeze for AuthIdentityProvider
impl RefUnwindSafe for AuthIdentityProvider
impl Send for AuthIdentityProvider
impl Sync for AuthIdentityProvider
impl Unpin for AuthIdentityProvider
impl UnwindSafe for AuthIdentityProvider
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