Struct kube_core::subresource::ScaleStatus [−][src]
Expand description
ScaleStatus represents the current status of a scale subresource.
Fields
replicas: i32
Expand description
actual number of observed instances of the scaled object.
selector: Option<String>
Expand description
label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors
Trait Implementations
impl Clone for ScaleStatus
[src]
impl Clone for ScaleStatus
[src]pub fn clone(&self) -> ScaleStatus
[src]
pub 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]pub fn default() -> ScaleStatus
[src]
pub 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]pub fn deserialize<D>(
deserializer: D
) -> Result<ScaleStatus, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
[src]
pub fn deserialize<D>(
deserializer: D
) -> Result<ScaleStatus, <D as Deserializer<'de>>::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]pub fn eq(&self, other: &ScaleStatus) -> bool
[src]
pub fn eq(&self, other: &ScaleStatus) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
pub fn ne(&self, other: &ScaleStatus) -> bool
[src]
pub fn ne(&self, other: &ScaleStatus) -> bool
[src]This method tests for !=
.
impl Serialize for ScaleStatus
[src]
impl Serialize for ScaleStatus
[src]pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
[src]
pub fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
[src]Serialize this value into the given Serde serializer. Read more
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>,