[][src]Struct google_youtubereporting1::Job

pub struct Job {
    pub expire_time: Option<String>,
    pub report_type_id: Option<String>,
    pub name: Option<String>,
    pub system_managed: Option<bool>,
    pub id: Option<String>,
    pub create_time: Option<String>,
}

A job creating reports of a specific type.

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

expire_time: Option<String>

The date/time when this job will expire/expired. After a job expired, no new reports are generated.

report_type_id: Option<String>

The type of reports this job creates. Corresponds to the ID of a ReportType.

name: Option<String>

The name of the job (max. 100 characters).

system_managed: Option<bool>

True if this a system-managed job that cannot be modified by the user; otherwise false.

id: Option<String>

The server-generated ID of the job (max. 40 characters).

create_time: Option<String>

The creation date/time of the job.

Trait Implementations

impl Clone for Job[src]

impl Debug for Job[src]

impl Default for Job[src]

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

impl RequestValue for Job[src]

impl Resource for Job[src]

impl ResponseResult for Job[src]

impl Serialize for Job[src]

Auto Trait Implementations

impl RefUnwindSafe for Job

impl Send for Job

impl Sync for Job

impl Unpin for Job

impl UnwindSafe for Job

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, 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.

impl<T> Typeable for T where
    T: Any