Struct k8s_openapi::v1_10::api::extensions::v1beta1::ScaleStatus [−][src]
pub struct ScaleStatus {
pub replicas: i32,
pub selector: Option<BTreeMap<String, String>>,
pub target_selector: Option<String>,
}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 ScaleStatusfn clone(&self) -> ScaleStatus[src]
fn clone(&self) -> ScaleStatusReturns 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 ScaleStatusfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Default for ScaleStatus[src]
impl Default for ScaleStatusfn default() -> ScaleStatus[src]
fn default() -> ScaleStatusReturns the "default value" for a type. Read more
impl PartialEq for ScaleStatus[src]
impl PartialEq for ScaleStatusfn eq(&self, other: &ScaleStatus) -> bool[src]
fn eq(&self, other: &ScaleStatus) -> boolThis 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) -> boolThis method tests for !=.
impl<'de> Deserialize<'de> for ScaleStatus[src]
impl<'de> Deserialize<'de> for ScaleStatusfn 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 ScaleStatusAuto Trait Implementations
impl Send for ScaleStatus
impl Send for ScaleStatusimpl Sync for ScaleStatus
impl Sync for ScaleStatus