[][src]Struct keycloak_crd::User

pub struct User {
    pub attributes: BTreeMap<String, String>,
    pub client_roles: BTreeMap<String, Vec<String>>,
    pub credentials: Vec<Credential>,
    pub email: String,
    pub email_verified: bool,
    pub enabled: bool,
    pub federated_identities: Vec<FederatedIdentity>,
    pub first_name: String,
    pub groups: Vec<String>,
    pub id: String,
    pub last_name: String,
    pub realm_roles: Vec<String>,
    pub required_actions: Vec<String>,
    pub username: String,
}

Fields

attributes: BTreeMap<String, String>client_roles: BTreeMap<String, Vec<String>>credentials: Vec<Credential>email: Stringemail_verified: boolenabled: boolfederated_identities: Vec<FederatedIdentity>first_name: Stringgroups: Vec<String>id: Stringlast_name: Stringrealm_roles: Vec<String>required_actions: Vec<String>username: String

Trait Implementations

impl Clone for User[src]

impl Debug for User[src]

impl Default for User[src]

impl<'de> Deserialize<'de> for User where
    User: Default
[src]

impl PartialEq<User> for User[src]

impl Serialize for User[src]

impl StructuralPartialEq for User[src]

Auto Trait Implementations

impl RefUnwindSafe for User

impl Send for User

impl Sync for User

impl Unpin for User

impl UnwindSafe for User

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.