[][src]Struct keycloak_crd::KeycloakSpec

pub struct KeycloakSpec {
    pub extensions: Vec<String>,
    pub external_access: ExternalAccess,
    pub external_database: ExternalDatabase,
    pub instances: u32,
    pub profile: String,
    pub keycloak_deployment_spec: KeycloakDeploymentSpec,
    pub migration: Migration,
    pub pod_disruption_budget: PodDisruptionBudget,
    pub postgres_deployment_spec: PostgresDeploymentSpec,
    pub storage_class_name: String,
}

Fields

extensions: Vec<String>external_access: ExternalAccessexternal_database: ExternalDatabaseinstances: u32profile: Stringkeycloak_deployment_spec: KeycloakDeploymentSpecmigration: Migrationpod_disruption_budget: PodDisruptionBudgetpostgres_deployment_spec: PostgresDeploymentSpecstorage_class_name: String

Trait Implementations

impl Clone for KeycloakSpec[src]

impl Debug for KeycloakSpec[src]

impl Default for KeycloakSpec[src]

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

impl PartialEq<KeycloakSpec> for KeycloakSpec[src]

impl Serialize for KeycloakSpec[src]

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