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