pub struct IdentityProviderDetails {
pub application_ids: Option<Vec<Uuid>>,
pub id: Option<Uuid>,
pub idp_endpoint: Option<String>,
pub name: Option<String>,
pub oauth2: Option<Box<IdentityProviderOauth2Configuration>>,
pub type: Option<IdentityProviderType>,
}
Fields§
§application_ids: Option<Vec<Uuid>>
§id: Option<Uuid>
§idp_endpoint: Option<String>
§name: Option<String>
§oauth2: Option<Box<IdentityProviderOauth2Configuration>>
§type: Option<IdentityProviderType>
Implementations§
source§impl IdentityProviderDetails
impl IdentityProviderDetails
pub fn new() -> IdentityProviderDetails
Trait Implementations§
source§impl Clone for IdentityProviderDetails
impl Clone for IdentityProviderDetails
source§fn clone(&self) -> IdentityProviderDetails
fn clone(&self) -> IdentityProviderDetails
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 IdentityProviderDetails
impl Debug for IdentityProviderDetails
source§impl Default for IdentityProviderDetails
impl Default for IdentityProviderDetails
source§fn default() -> IdentityProviderDetails
fn default() -> IdentityProviderDetails
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IdentityProviderDetails
impl<'de> Deserialize<'de> for IdentityProviderDetails
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 IdentityProviderDetails
impl PartialEq for IdentityProviderDetails
source§fn eq(&self, other: &IdentityProviderDetails) -> bool
fn eq(&self, other: &IdentityProviderDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for IdentityProviderDetails
impl Serialize for IdentityProviderDetails
impl StructuralPartialEq for IdentityProviderDetails
Auto Trait Implementations§
impl RefUnwindSafe for IdentityProviderDetails
impl Send for IdentityProviderDetails
impl Sync for IdentityProviderDetails
impl Unpin for IdentityProviderDetails
impl UnwindSafe for IdentityProviderDetails
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