pub struct GetJobResponse {
pub arn: Option<String>,
pub created_at: Option<f64>,
pub details: Option<ResponseDetails>,
pub errors: Option<Vec<JobError>>,
pub id: Option<String>,
pub state: Option<String>,
pub type_: Option<String>,
pub updated_at: Option<f64>,
}Fields§
§arn: Option<String>The ARN for the job.
created_at: Option<f64>The date and time that the job was created, in ISO 8601 format.
details: Option<ResponseDetails>Details about the job.
errors: Option<Vec<JobError>>The errors associated with jobs.
id: Option<String>The unique identifier for the job.
state: Option<String>The state of the job.
type_: Option<String>The job type.
updated_at: Option<f64>The date and time that the job was last updated, in ISO 8601 format.
Trait Implementations§
Source§impl Clone for GetJobResponse
impl Clone for GetJobResponse
Source§fn clone(&self) -> GetJobResponse
fn clone(&self) -> GetJobResponse
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 GetJobResponse
impl Debug for GetJobResponse
Source§impl Default for GetJobResponse
impl Default for GetJobResponse
Source§fn default() -> GetJobResponse
fn default() -> GetJobResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetJobResponse
impl<'de> Deserialize<'de> for GetJobResponse
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 PartialEq for GetJobResponse
impl PartialEq for GetJobResponse
impl StructuralPartialEq for GetJobResponse
Auto Trait Implementations§
impl Freeze for GetJobResponse
impl RefUnwindSafe for GetJobResponse
impl Send for GetJobResponse
impl Sync for GetJobResponse
impl Unpin for GetJobResponse
impl UnwindSafe for GetJobResponse
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