[][src]Struct keycloak_crd::Keycloak

pub struct Keycloak {
    pub api_version: String,
    pub kind: String,
    pub metadata: ObjectMeta,
    pub spec: KeycloakSpec,
    pub status: Option<KeycloakStatus>,
}

Auto-generated derived type for KeycloakSpec via CustomResource

Fields

api_version: Stringkind: Stringmetadata: ObjectMetaspec: KeycloakSpecstatus: Option<KeycloakStatus>

Implementations

impl Keycloak[src]

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

impl Keycloak[src]

Trait Implementations

impl Clone for Keycloak[src]

impl Debug for Keycloak[src]

impl Default for Keycloak[src]

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

impl Metadata for Keycloak[src]

type Ty = ObjectMeta

The type of the metadata object.

impl PartialEq<Keycloak> for Keycloak[src]

impl Resource for Keycloak[src]

impl Serialize for Keycloak[src]

impl StructuralPartialEq for Keycloak[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.