Struct k8s_openapi_ext::batchv1::CronJobStatus
source · pub struct CronJobStatus {
pub active: Option<Vec<ObjectReference, Global>>,
pub last_schedule_time: Option<Time>,
pub last_successful_time: Option<Time>,
}
Expand description
CronJobStatus represents the current state of a cron job.
Fields§
§active: Option<Vec<ObjectReference, Global>>
A list of pointers to currently running jobs.
last_schedule_time: Option<Time>
Information when was the last time the job was successfully scheduled.
last_successful_time: Option<Time>
Information when was the last time the job successfully completed.
Trait Implementations§
source§impl Clone for CronJobStatus
impl Clone for CronJobStatus
source§fn clone(&self) -> CronJobStatus
fn clone(&self) -> CronJobStatus
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 CronJobStatus
impl Debug for CronJobStatus
source§impl DeepMerge for CronJobStatus
impl DeepMerge for CronJobStatus
source§fn merge_from(&mut self, other: CronJobStatus)
fn merge_from(&mut self, other: CronJobStatus)
Merge
other
into self
.source§impl Default for CronJobStatus
impl Default for CronJobStatus
source§fn default() -> CronJobStatus
fn default() -> CronJobStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CronJobStatus
impl<'de> Deserialize<'de> for CronJobStatus
source§fn deserialize<D>(
deserializer: D
) -> Result<CronJobStatus, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>( deserializer: D ) -> Result<CronJobStatus, <D as Deserializer<'de>>::Error>where D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<CronJobStatus> for CronJobStatus
impl PartialEq<CronJobStatus> for CronJobStatus
source§fn eq(&self, other: &CronJobStatus) -> bool
fn eq(&self, other: &CronJobStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CronJobStatus
impl Serialize for CronJobStatus
source§fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>( &self, serializer: S ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where S: Serializer,
Serialize this value into the given Serde serializer. Read more