pub struct PutJobFailureResultInput {
pub failure_details: FailureDetails,
pub job_id: String,
}
Expand description
Represents the input of a PutJobFailureResult
action.
Fields§
§failure_details: FailureDetails
The details about the failure of a job.
job_id: String
The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs
.
Trait Implementations§
Source§impl Clone for PutJobFailureResultInput
impl Clone for PutJobFailureResultInput
Source§fn clone(&self) -> PutJobFailureResultInput
fn clone(&self) -> PutJobFailureResultInput
Returns a copy 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 PutJobFailureResultInput
impl Debug for PutJobFailureResultInput
Source§impl Default for PutJobFailureResultInput
impl Default for PutJobFailureResultInput
Source§fn default() -> PutJobFailureResultInput
fn default() -> PutJobFailureResultInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutJobFailureResultInput
impl PartialEq for PutJobFailureResultInput
Source§impl Serialize for PutJobFailureResultInput
impl Serialize for PutJobFailureResultInput
impl StructuralPartialEq for PutJobFailureResultInput
Auto Trait Implementations§
impl Freeze for PutJobFailureResultInput
impl RefUnwindSafe for PutJobFailureResultInput
impl Send for PutJobFailureResultInput
impl Sync for PutJobFailureResultInput
impl Unpin for PutJobFailureResultInput
impl UnwindSafe for PutJobFailureResultInput
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