[][src]Struct keycloak_crd::Realm

pub struct Realm {
    pub clients: Vec<Client>,
    pub display_name: String,
    pub enabled: bool,
    pub events_enabled: bool,
    pub events_listeners: Vec<String>,
    pub id: String,
    pub identity_providers: Vec<IdentityProvider>,
    pub realm: String,
    pub users: Vec<User>,
    pub realm_overrides: Vec<Override>,
}

Fields

clients: Vec<Client>display_name: Stringenabled: boolevents_enabled: boolevents_listeners: Vec<String>id: Stringidentity_providers: Vec<IdentityProvider>realm: Stringusers: Vec<User>realm_overrides: Vec<Override>

Trait Implementations

impl Clone for Realm[src]

impl Debug for Realm[src]

impl Default for Realm[src]

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

impl PartialEq<Realm> for Realm[src]

impl Serialize for Realm[src]

impl StructuralPartialEq for Realm[src]

Auto Trait Implementations

impl RefUnwindSafe for Realm

impl Send for Realm

impl Sync for Realm

impl Unpin for Realm

impl UnwindSafe for Realm

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.