pub enum PutThirdPartyJobFailureResultError {
InvalidClientToken(String),
InvalidJobState(String),
JobNotFound(String),
}
Expand description
Errors returned by PutThirdPartyJobFailureResult
Variants§
InvalidClientToken(String)
The client token was specified in an invalid format
InvalidJobState(String)
The job state was specified in an invalid format.
JobNotFound(String)
The job was specified in an invalid format or cannot be found.
Implementations§
Trait Implementations§
Source§impl Error for PutThirdPartyJobFailureResultError
impl Error for PutThirdPartyJobFailureResultError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for PutThirdPartyJobFailureResultError
impl PartialEq for PutThirdPartyJobFailureResultError
Source§fn eq(&self, other: &PutThirdPartyJobFailureResultError) -> bool
fn eq(&self, other: &PutThirdPartyJobFailureResultError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutThirdPartyJobFailureResultError
Auto Trait Implementations§
impl Freeze for PutThirdPartyJobFailureResultError
impl RefUnwindSafe for PutThirdPartyJobFailureResultError
impl Send for PutThirdPartyJobFailureResultError
impl Sync for PutThirdPartyJobFailureResultError
impl Unpin for PutThirdPartyJobFailureResultError
impl UnwindSafe for PutThirdPartyJobFailureResultError
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