pub enum SendTaskFailureError {
InvalidToken(String),
TaskDoesNotExist(String),
TaskTimedOut(String),
}
Expand description
Errors returned by SendTaskFailure
Variants§
Implementations§
Source§impl SendTaskFailureError
impl SendTaskFailureError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<SendTaskFailureError>
Trait Implementations§
Source§impl Debug for SendTaskFailureError
impl Debug for SendTaskFailureError
Source§impl Display for SendTaskFailureError
impl Display for SendTaskFailureError
Source§impl Error for SendTaskFailureError
impl Error for SendTaskFailureError
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 SendTaskFailureError
impl PartialEq for SendTaskFailureError
impl StructuralPartialEq for SendTaskFailureError
Auto Trait Implementations§
impl Freeze for SendTaskFailureError
impl RefUnwindSafe for SendTaskFailureError
impl Send for SendTaskFailureError
impl Sync for SendTaskFailureError
impl Unpin for SendTaskFailureError
impl UnwindSafe for SendTaskFailureError
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