pub enum ListAnalyzersError {
AccessDenied(String),
InternalServer(String),
Throttling(String),
}
Expand description
Errors returned by ListAnalyzers
Variants§
AccessDenied(String)
You do not have sufficient access to perform this action.
InternalServer(String)
Internal server error.
Throttling(String)
Throttling limit exceeded error.
Implementations§
Source§impl ListAnalyzersError
impl ListAnalyzersError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListAnalyzersError>
Trait Implementations§
Source§impl Debug for ListAnalyzersError
impl Debug for ListAnalyzersError
Source§impl Display for ListAnalyzersError
impl Display for ListAnalyzersError
Source§impl Error for ListAnalyzersError
impl Error for ListAnalyzersError
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 ListAnalyzersError
impl PartialEq for ListAnalyzersError
impl StructuralPartialEq for ListAnalyzersError
Auto Trait Implementations§
impl Freeze for ListAnalyzersError
impl RefUnwindSafe for ListAnalyzersError
impl Send for ListAnalyzersError
impl Sync for ListAnalyzersError
impl Unpin for ListAnalyzersError
impl UnwindSafe for ListAnalyzersError
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