Struct k8s_openapi::v1_8::api::apps::v1beta2::ScaleStatus [−][src]
pub struct ScaleStatus { pub replicas: i32, pub selector: Option<BTreeMap<String, String>>, pub target_selector: Option<String>, }
ScaleStatus represents the current status of a scale subresource.
Fields
replicas: i32
actual number of observed instances of the scaled object.
selector: Option<BTreeMap<String, String>>
label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors
target_selector: Option<String>
label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
Trait Implementations
impl Clone for ScaleStatus
[src]
impl Clone for ScaleStatus
fn clone(&self) -> ScaleStatus
[src]
fn clone(&self) -> ScaleStatus
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for ScaleStatus
[src]
impl Debug for ScaleStatus
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Default for ScaleStatus
[src]
impl Default for ScaleStatus
fn default() -> ScaleStatus
[src]
fn default() -> ScaleStatus
Returns the "default value" for a type. Read more
impl PartialEq for ScaleStatus
[src]
impl PartialEq for ScaleStatus
fn eq(&self, other: &ScaleStatus) -> bool
[src]
fn eq(&self, other: &ScaleStatus) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &ScaleStatus) -> bool
[src]
fn ne(&self, other: &ScaleStatus) -> bool
This method tests for !=
.
impl<'de> Deserialize<'de> for ScaleStatus
[src]
impl<'de> Deserialize<'de> for ScaleStatus
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Serialize for ScaleStatus
[src]
impl Serialize for ScaleStatus
Auto Trait Implementations
impl Send for ScaleStatus
impl Send for ScaleStatus
impl Sync for ScaleStatus
impl Sync for ScaleStatus