pub struct Provider {Show 15 fields
pub id: String,
pub project_id: String,
pub provider_key: String,
pub kind: ProviderKind,
pub display_name: String,
pub issuer: String,
pub client_id: String,
pub callback_url: String,
pub status: ProviderStatus,
pub revision: i64,
pub login_supported: bool,
pub identity_proof_supported: bool,
pub managed_profile: ProviderManagedProfileCapability,
pub secret_replacement_pending: bool,
pub assigned_application_ids: Vec<String>,
}Fields§
§id: String§project_id: String§provider_key: String§kind: ProviderKind§display_name: String§issuer: String§client_id: String§callback_url: String§status: ProviderStatus§revision: i64§login_supported: boolWhether this adapter can be selected for ordinary Runtime login.
identity_proof_supported: boolWhether this adapter can serve as an identity-mutation proof authority.
managed_profile: ProviderManagedProfileCapability§secret_replacement_pending: boolWhether a durable protected-secret replacement awaits reconciliation or abandonment.
assigned_application_ids: Vec<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Provider
impl<'de> Deserialize<'de> for Provider
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
impl Eq for Provider
impl StructuralPartialEq for Provider
Auto Trait Implementations§
impl Freeze for Provider
impl RefUnwindSafe for Provider
impl Send for Provider
impl Sync for Provider
impl Unpin for Provider
impl UnsafeUnpin for Provider
impl UnwindSafe for Provider
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.