Struct k8s_openapi::api::batch::v1::CronJobStatus [−][src]
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
Returns the “default value” for a type. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CronJobStatus
impl Send for CronJobStatus
impl Sync for CronJobStatus
impl Unpin for CronJobStatus
impl UnwindSafe for CronJobStatus
Blanket Implementations
Mutably borrows from an owned value. Read more