Struct k8s_openapi::v1_11::api::batch::v1beta1::JobTemplateSpec[][src]

pub struct JobTemplateSpec {
    pub metadata: Option<ObjectMeta>,
    pub spec: Option<JobSpec>,
}

JobTemplateSpec describes the data a Job should have when created from a template

Fields

Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Trait Implementations

impl Clone for JobTemplateSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for JobTemplateSpec
[src]

Formats the value using the given formatter. Read more

impl Default for JobTemplateSpec
[src]

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

impl PartialEq for JobTemplateSpec
[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 JobTemplateSpec
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for JobTemplateSpec
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations