Struct k8s_openapi::api::apps::v1beta1::ScaleStatus [−][src]
pub struct ScaleStatus { pub replicas: i32, pub selector: Option<BTreeMap<String, String>>, pub target_selector: Option<String>, }
Expand description
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
[src]fn clone(&self) -> ScaleStatus
[src]
fn clone(&self) -> ScaleStatus
[src]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)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for ScaleStatus
[src]
impl Debug for ScaleStatus
[src]impl Default for ScaleStatus
[src]
impl Default for ScaleStatus
[src]fn default() -> ScaleStatus
[src]
fn default() -> ScaleStatus
[src]Returns the “default value” for a type. Read more
impl<'de> Deserialize<'de> for ScaleStatus
[src]
impl<'de> Deserialize<'de> for ScaleStatus
[src]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>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<ScaleStatus> for ScaleStatus
[src]
impl PartialEq<ScaleStatus> for ScaleStatus
[src]fn eq(&self, other: &ScaleStatus) -> bool
[src]
fn eq(&self, other: &ScaleStatus) -> bool
[src]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
[src]This method tests for !=
.
impl Serialize for ScaleStatus
[src]
impl Serialize for ScaleStatus
[src]impl StructuralPartialEq for ScaleStatus
[src]
Auto Trait Implementations
impl RefUnwindSafe for ScaleStatus
impl Send for ScaleStatus
impl Sync for ScaleStatus
impl Unpin for ScaleStatus
impl UnwindSafe for ScaleStatus
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,