[][src]Struct keycloak_crd::KeycloakUser

pub struct KeycloakUser {
    pub api_version: String,
    pub kind: String,
    pub metadata: ObjectMeta,
    pub spec: KeycloakUserSpec,
    pub status: Option<KeycloakUserStatus>,
}

Auto-generated derived type for KeycloakUserSpec via CustomResource

Fields

api_version: Stringkind: Stringmetadata: ObjectMetaspec: KeycloakUserSpecstatus: Option<KeycloakUserStatus>

Implementations

impl KeycloakUser[src]

pub fn new(name: &str, spec: KeycloakUserSpec) -> Self[src]

impl KeycloakUser[src]

Trait Implementations

impl Clone for KeycloakUser[src]

impl Debug for KeycloakUser[src]

impl Default for KeycloakUser[src]

impl<'de> Deserialize<'de> for KeycloakUser[src]

impl Metadata for KeycloakUser[src]

type Ty = ObjectMeta

The type of the metadata object.

impl PartialEq<KeycloakUser> for KeycloakUser[src]

impl Resource for KeycloakUser[src]

impl Serialize for KeycloakUser[src]

impl StructuralPartialEq for KeycloakUser[src]

Auto Trait Implementations

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.