Struct k8s_openapi::api::batch::v1::CronJobStatus
source · pub struct CronJobStatus {
pub active: Option<Vec<ObjectReference>>,
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>>
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: Self)
fn merge_from(&mut self, other: Self)
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<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<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 ==
.