Struct google_jobs4::api::BatchUpdateJobsRequest[][src]

pub struct BatchUpdateJobsRequest {
    pub jobs: Option<Vec<Job>>,
    pub update_mask: Option<String>,
}

Request to update a batch of jobs.

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

jobs: Option<Vec<Job>>

Required. The jobs to be updated. A maximum of 200 jobs can be updated in a batch.

update_mask: Option<String>

Strongly recommended for the best service experience. Be aware that it will also increase latency when checking the status of a batch operation. 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. If update_mask is provided, The Job inside JobResult will only contains fields that is updated, plus the Id of the Job. Otherwise, Job will include all fields, which can yield a very large response.

Trait Implementations

impl Clone for BatchUpdateJobsRequest[src]

impl Debug for BatchUpdateJobsRequest[src]

impl Default for BatchUpdateJobsRequest[src]

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

impl RequestValue for BatchUpdateJobsRequest[src]

impl Serialize for BatchUpdateJobsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for BatchUpdateJobsRequest[src]

impl Send for BatchUpdateJobsRequest[src]

impl Sync for BatchUpdateJobsRequest[src]

impl Unpin for BatchUpdateJobsRequest[src]

impl UnwindSafe for BatchUpdateJobsRequest[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.