pub enum AcknowledgeJobError {
InvalidNonce(String),
JobNotFound(String),
}
Expand description
Errors returned by AcknowledgeJob
Variants§
InvalidNonce(String)
The nonce was specified in an invalid format.
JobNotFound(String)
The job was specified in an invalid format or cannot be found.
Implementations§
Source§impl AcknowledgeJobError
impl AcknowledgeJobError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<AcknowledgeJobError>
Trait Implementations§
Source§impl Debug for AcknowledgeJobError
impl Debug for AcknowledgeJobError
Source§impl Display for AcknowledgeJobError
impl Display for AcknowledgeJobError
Source§impl Error for AcknowledgeJobError
impl Error for AcknowledgeJobError
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 AcknowledgeJobError
impl PartialEq for AcknowledgeJobError
impl StructuralPartialEq for AcknowledgeJobError
Auto Trait Implementations§
impl Freeze for AcknowledgeJobError
impl RefUnwindSafe for AcknowledgeJobError
impl Send for AcknowledgeJobError
impl Sync for AcknowledgeJobError
impl Unpin for AcknowledgeJobError
impl UnwindSafe for AcknowledgeJobError
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