pub struct JobCreateResponse {
pub job_id: String,
pub status: String,
pub job_type: Option<String>,
pub request_id: Option<String>,
pub created_at: Option<String>,
}Expand description
Response from job creation.
Fields§
§job_id: String§status: String§job_type: Option<String>§request_id: Option<String>§created_at: Option<String>Trait Implementations§
Source§impl Clone for JobCreateResponse
impl Clone for JobCreateResponse
Source§fn clone(&self) -> JobCreateResponse
fn clone(&self) -> JobCreateResponse
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 JobCreateResponse
impl Debug for JobCreateResponse
Source§impl<'de> Deserialize<'de> for JobCreateResponse
impl<'de> Deserialize<'de> for JobCreateResponse
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
Auto Trait Implementations§
impl Freeze for JobCreateResponse
impl RefUnwindSafe for JobCreateResponse
impl Send for JobCreateResponse
impl Sync for JobCreateResponse
impl Unpin for JobCreateResponse
impl UnsafeUnpin for JobCreateResponse
impl UnwindSafe for JobCreateResponse
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