pub enum GetAccountSettingsError {
Service(String),
TooManyRequests(String),
}
Expand description
Errors returned by GetAccountSettings
Variants§
Service(String)
The AWS Lambda service encountered an internal error.
TooManyRequests(String)
The request throughput limit was exceeded.
Implementations§
Source§impl GetAccountSettingsError
impl GetAccountSettingsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetAccountSettingsError>
Trait Implementations§
Source§impl Debug for GetAccountSettingsError
impl Debug for GetAccountSettingsError
Source§impl Display for GetAccountSettingsError
impl Display for GetAccountSettingsError
Source§impl Error for GetAccountSettingsError
impl Error for GetAccountSettingsError
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 GetAccountSettingsError
impl PartialEq for GetAccountSettingsError
impl StructuralPartialEq for GetAccountSettingsError
Auto Trait Implementations§
impl Freeze for GetAccountSettingsError
impl RefUnwindSafe for GetAccountSettingsError
impl Send for GetAccountSettingsError
impl Sync for GetAccountSettingsError
impl Unpin for GetAccountSettingsError
impl UnwindSafe for GetAccountSettingsError
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