pub struct UserRepresentation {Show 22 fields
pub access: Option<HashMap<String, bool>>,
pub attributes: Option<HashMap<String, Vec<String>>>,
pub client_consents: Option<Vec<UserConsentRepresentation>>,
pub created_timestamp: Option<i64>,
pub credentials: Option<Vec<CredentialRepresentation>>,
pub disableable_credential_types: Option<Vec<String>>,
pub email: Option<String>,
pub email_verified: Option<bool>,
pub enabled: Option<bool>,
pub federated_identities: Option<Vec<FederatedIdentityRepresentation>>,
pub federation_link: Option<String>,
pub first_name: Option<String>,
pub groups: Option<Vec<String>>,
pub id: Option<String>,
pub last_name: Option<String>,
pub not_before: Option<i32>,
pub origin: Option<String>,
pub realm_roles: Option<Vec<String>>,
pub required_actions: Option<Vec<String>>,
pub self_: Option<String>,
pub service_account_client_id: Option<String>,
pub username: Option<String>,
}Fields§
§access: Option<HashMap<String, bool>>§attributes: Option<HashMap<String, Vec<String>>>§client_consents: Option<Vec<UserConsentRepresentation>>§created_timestamp: Option<i64>§credentials: Option<Vec<CredentialRepresentation>>§disableable_credential_types: Option<Vec<String>>§email: Option<String>§email_verified: Option<bool>§enabled: Option<bool>§federated_identities: Option<Vec<FederatedIdentityRepresentation>>§federation_link: Option<String>§first_name: Option<String>§groups: Option<Vec<String>>§id: Option<String>§last_name: Option<String>§not_before: Option<i32>§origin: Option<String>§realm_roles: Option<Vec<String>>§required_actions: Option<Vec<String>>§self_: Option<String>§service_account_client_id: Option<String>§username: Option<String>Trait Implementations§
Source§impl Clone for UserRepresentation
impl Clone for UserRepresentation
Source§fn clone(&self) -> UserRepresentation
fn clone(&self) -> UserRepresentation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UserRepresentation
impl Debug for UserRepresentation
Source§impl Default for UserRepresentation
impl Default for UserRepresentation
Source§fn default() -> UserRepresentation
fn default() -> UserRepresentation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserRepresentation
impl<'de> Deserialize<'de> for UserRepresentation
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 UserRepresentation
impl RefUnwindSafe for UserRepresentation
impl Send for UserRepresentation
impl Sync for UserRepresentation
impl Unpin for UserRepresentation
impl UnsafeUnpin for UserRepresentation
impl UnwindSafe for UserRepresentation
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