pub enum DeleteHumanLoopError {
InternalServer(String),
ResourceNotFound(String),
Throttling(String),
}Expand description
Errors returned by DeleteHumanLoop
Variants§
InternalServer(String)
We couldn't process your request because of an issue with the server. Try again later.
ResourceNotFound(String)
We couldn't find the requested resource.
Throttling(String)
You exceeded the maximum number of requests.
Implementations§
Source§impl DeleteHumanLoopError
impl DeleteHumanLoopError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteHumanLoopError>
Trait Implementations§
Source§impl Debug for DeleteHumanLoopError
impl Debug for DeleteHumanLoopError
Source§impl Display for DeleteHumanLoopError
impl Display for DeleteHumanLoopError
Source§impl Error for DeleteHumanLoopError
impl Error for DeleteHumanLoopError
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 DeleteHumanLoopError
impl PartialEq for DeleteHumanLoopError
impl StructuralPartialEq for DeleteHumanLoopError
Auto Trait Implementations§
impl Freeze for DeleteHumanLoopError
impl RefUnwindSafe for DeleteHumanLoopError
impl Send for DeleteHumanLoopError
impl Sync for DeleteHumanLoopError
impl Unpin for DeleteHumanLoopError
impl UnwindSafe for DeleteHumanLoopError
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