[][src]Struct k8s_openapi::api::core::v1::ReplicationControllerStatus

pub struct ReplicationControllerStatus {
    pub available_replicas: Option<i32>,
    pub conditions: Option<Vec<ReplicationControllerCondition>>,
    pub fully_labeled_replicas: Option<i32>,
    pub observed_generation: Option<i64>,
    pub ready_replicas: Option<i32>,
    pub replicas: i32,
}

ReplicationControllerStatus represents the current status of a replication controller.

Fields

available_replicas: Option<i32>

The number of available replicas (ready for at least minReadySeconds) for this replication controller.

conditions: Option<Vec<ReplicationControllerCondition>>

Represents the latest available observations of a replication controller's current state.

fully_labeled_replicas: Option<i32>

The number of pods that have labels matching the labels of the pod template of the replication controller.

observed_generation: Option<i64>

ObservedGeneration reflects the generation of the most recently observed replication controller.

ready_replicas: Option<i32>

The number of ready replicas for this replication controller.

replicas: i32

Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

Trait Implementations

impl Clone for ReplicationControllerStatus[src]

impl Debug for ReplicationControllerStatus[src]

impl Default for ReplicationControllerStatus[src]

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

impl PartialEq<ReplicationControllerStatus> for ReplicationControllerStatus[src]

impl Serialize for ReplicationControllerStatus[src]

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