Struct k8s_openapi::api::batch::v1::UncountedTerminatedPods    
source · pub struct UncountedTerminatedPods {
    pub failed: Option<Vec<String>>,
    pub succeeded: Option<Vec<String>>,
}Expand description
UncountedTerminatedPods holds UIDs of Pods that have terminated but haven’t been accounted in Job status counters.
Fields§
§failed: Option<Vec<String>>failed holds UIDs of failed Pods.
succeeded: Option<Vec<String>>succeeded holds UIDs of succeeded Pods.
Trait Implementations§
source§impl Clone for UncountedTerminatedPods
 
impl Clone for UncountedTerminatedPods
source§fn clone(&self) -> UncountedTerminatedPods
 
fn clone(&self) -> UncountedTerminatedPods
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for UncountedTerminatedPods
 
impl Debug for UncountedTerminatedPods
source§impl DeepMerge for UncountedTerminatedPods
 
impl DeepMerge for UncountedTerminatedPods
source§fn merge_from(&mut self, other: Self)
 
fn merge_from(&mut self, other: Self)
Merge 
other into self.source§impl Default for UncountedTerminatedPods
 
impl Default for UncountedTerminatedPods
source§fn default() -> UncountedTerminatedPods
 
fn default() -> UncountedTerminatedPods
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UncountedTerminatedPods
 
impl<'de> Deserialize<'de> for UncountedTerminatedPods
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
    D: Deserializer<'de>,
 
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<UncountedTerminatedPods> for UncountedTerminatedPods
 
impl PartialEq<UncountedTerminatedPods> for UncountedTerminatedPods
source§fn eq(&self, other: &UncountedTerminatedPods) -> bool
 
fn eq(&self, other: &UncountedTerminatedPods) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for UncountedTerminatedPods
 
impl Serialize for UncountedTerminatedPods
impl StructuralPartialEq for UncountedTerminatedPods
Auto Trait Implementations§
impl RefUnwindSafe for UncountedTerminatedPods
impl Send for UncountedTerminatedPods
impl Sync for UncountedTerminatedPods
impl Unpin for UncountedTerminatedPods
impl UnwindSafe for UncountedTerminatedPods
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more