pub enum ListScheduledAuditsError {
InternalFailure(String),
InvalidRequest(String),
Throttling(String),
}Expand description
Errors returned by ListScheduledAudits
Variants§
InternalFailure(String)
An unexpected error has occurred.
InvalidRequest(String)
The request is not valid.
Throttling(String)
The rate exceeds the limit.
Implementations§
Source§impl ListScheduledAuditsError
impl ListScheduledAuditsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListScheduledAuditsError>
Trait Implementations§
Source§impl Debug for ListScheduledAuditsError
impl Debug for ListScheduledAuditsError
Source§impl Display for ListScheduledAuditsError
impl Display for ListScheduledAuditsError
Source§impl Error for ListScheduledAuditsError
impl Error for ListScheduledAuditsError
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 ListScheduledAuditsError
impl PartialEq for ListScheduledAuditsError
impl StructuralPartialEq for ListScheduledAuditsError
Auto Trait Implementations§
impl Freeze for ListScheduledAuditsError
impl RefUnwindSafe for ListScheduledAuditsError
impl Send for ListScheduledAuditsError
impl Sync for ListScheduledAuditsError
impl Unpin for ListScheduledAuditsError
impl UnwindSafe for ListScheduledAuditsError
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