Struct k8s_openapi::v1_11::api::batch::v2alpha1::CronJobStatus[][src]

pub struct CronJobStatus {
    pub active: Option<Vec<ObjectReference>>,
    pub last_schedule_time: Option<Time>,
}

CronJobStatus represents the current state of a cron job.

Fields

A list of pointers to currently running jobs.

Information when was the last time the job was successfully scheduled.

Trait Implementations

impl Clone for CronJobStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CronJobStatus
[src]

Formats the value using the given formatter. Read more

impl Default for CronJobStatus
[src]

Returns the "default value" for a type. Read more

impl PartialEq for CronJobStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'de> Deserialize<'de> for CronJobStatus
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for CronJobStatus
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations