Trait ReplicaSetGetExt

Source
pub trait ReplicaSetGetExt {
    // Required methods
    fn spec(&self) -> Option<&ReplicaSetSpec>;
    fn status(&self) -> Option<&ReplicaSetStatus>;

    // Provided methods
    fn min_ready_seconds(&self) -> Option<i32> { ... }
    fn spec_replicas(&self) -> Option<i32> { ... }
    fn selector(&self) -> Option<&LabelSelector> { ... }
    fn template(&self) -> Option<&PodTemplateSpec> { ... }
    fn available_replicas(&self) -> Option<i32> { ... }
    fn ready_replicas(&self) -> Option<i32> { ... }
    fn fully_labeled_replicas(&self) -> Option<i32> { ... }
    fn status_replicas(&self) -> Option<i32> { ... }
    fn observed_generation(&self) -> Option<i64> { ... }
    fn conditions(&self) -> Option<&[ReplicaSetCondition]> { ... }
}

Required Methods§

Provided Methods§

Implementors§