pub struct JobCreationReason {
pub code: Option<String>,
}Expand description
Reason about why a Job was created from a jobs.query method when used with JOB_CREATION_OPTIONAL Job creation mode. For jobs.insert method calls it will always be REQUESTED.
This type is not used in any activity, and only used as part of another schema.
Fields§
§code: Option<String>Output only. Specifies the high level reason why a Job was created.
Trait Implementations§
Source§impl Clone for JobCreationReason
impl Clone for JobCreationReason
Source§fn clone(&self) -> JobCreationReason
fn clone(&self) -> JobCreationReason
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JobCreationReason
impl Debug for JobCreationReason
Source§impl Default for JobCreationReason
impl Default for JobCreationReason
Source§fn default() -> JobCreationReason
fn default() -> JobCreationReason
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobCreationReason
impl<'de> Deserialize<'de> for JobCreationReason
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for JobCreationReason
impl Serialize for JobCreationReason
impl Part for JobCreationReason
Auto Trait Implementations§
impl Freeze for JobCreationReason
impl RefUnwindSafe for JobCreationReason
impl Send for JobCreationReason
impl Sync for JobCreationReason
impl Unpin for JobCreationReason
impl UnwindSafe for JobCreationReason
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more