pub struct PendingIdPLink {
pub display_name: Option<String>,
pub email: Option<String>,
pub identity_provider_id: Option<Uuid>,
pub identity_provider_links: Option<Vec<IdentityProviderLink>>,
pub identity_provider_name: Option<String>,
pub identity_provider_tenant_configuration: Option<Box<IdentityProviderTenantConfiguration>>,
pub identity_provider_type: Option<IdentityProviderType>,
pub identity_provider_user_id: Option<String>,
pub user: Option<Box<User>>,
pub username: Option<String>,
}Expand description
PendingIdPLink :
Fields§
§display_name: Option<String>§email: Option<String>§identity_provider_id: Option<Uuid>§identity_provider_links: Option<Vec<IdentityProviderLink>>§identity_provider_name: Option<String>§identity_provider_tenant_configuration: Option<Box<IdentityProviderTenantConfiguration>>§identity_provider_type: Option<IdentityProviderType>§identity_provider_user_id: Option<String>§user: Option<Box<User>>§username: Option<String>Implementations§
Source§impl PendingIdPLink
impl PendingIdPLink
Sourcepub fn new() -> PendingIdPLink
pub fn new() -> PendingIdPLink
Trait Implementations§
Source§impl Clone for PendingIdPLink
impl Clone for PendingIdPLink
Source§fn clone(&self) -> PendingIdPLink
fn clone(&self) -> PendingIdPLink
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 PendingIdPLink
impl Debug for PendingIdPLink
Source§impl Default for PendingIdPLink
impl Default for PendingIdPLink
Source§fn default() -> PendingIdPLink
fn default() -> PendingIdPLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingIdPLink
impl<'de> Deserialize<'de> for PendingIdPLink
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 PendingIdPLink
impl PartialEq for PendingIdPLink
Source§impl Serialize for PendingIdPLink
impl Serialize for PendingIdPLink
impl StructuralPartialEq for PendingIdPLink
Auto Trait Implementations§
impl Freeze for PendingIdPLink
impl RefUnwindSafe for PendingIdPLink
impl Send for PendingIdPLink
impl Sync for PendingIdPLink
impl Unpin for PendingIdPLink
impl UnwindSafe for PendingIdPLink
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