[][src]Struct google_bigquery2::JobReference

pub struct JobReference {
    pub project_id: Option<String>,
    pub location: Option<String>,
    pub job_id: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

project_id: Option<String>

[Required] The ID of the project containing this job.

location: Option<String>

The geographic location of the job. See details at https://cloud.google.com/bigquery/docs/locations#specifying_your_location.

job_id: Option<String>

[Required] The ID of the job. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-). The maximum length is 1,024 characters.

Trait Implementations

impl Clone for JobReference[src]

impl Debug for JobReference[src]

impl Default for JobReference[src]

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

impl Part for JobReference[src]

impl Serialize for JobReference[src]

Auto Trait Implementations

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