Struct google_jobs3::UpdateJobRequest[][src]

pub struct UpdateJobRequest {
    pub job: Option<Job>,
    pub update_mask: Option<String>,
}

Input only.

Update job request.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Required.

The Job to be updated.

Optional but strongly recommended to be provided for the best service experience.

If update_mask is provided, only the specified fields in job are updated. Otherwise all the fields are updated.

A field mask to restrict the fields that are updated. Only top level fields of Job are supported.

Trait Implementations

impl Default for UpdateJobRequest
[src]

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

impl Clone for UpdateJobRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UpdateJobRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for UpdateJobRequest
[src]

Auto Trait Implementations