pub enum ListV2LoggingLevelsError {
Internal(String),
InvalidRequest(String),
NotConfigured(String),
ServiceUnavailable(String),
}Expand description
Errors returned by ListV2LoggingLevels
Variants§
Internal(String)
An unexpected error has occurred.
InvalidRequest(String)
The request is not valid.
NotConfigured(String)
The resource is not configured.
The service is temporarily unavailable.
Implementations§
Source§impl ListV2LoggingLevelsError
impl ListV2LoggingLevelsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListV2LoggingLevelsError>
Trait Implementations§
Source§impl Debug for ListV2LoggingLevelsError
impl Debug for ListV2LoggingLevelsError
Source§impl Display for ListV2LoggingLevelsError
impl Display for ListV2LoggingLevelsError
Source§impl Error for ListV2LoggingLevelsError
impl Error for ListV2LoggingLevelsError
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 ListV2LoggingLevelsError
impl PartialEq for ListV2LoggingLevelsError
impl StructuralPartialEq for ListV2LoggingLevelsError
Auto Trait Implementations§
impl Freeze for ListV2LoggingLevelsError
impl RefUnwindSafe for ListV2LoggingLevelsError
impl Send for ListV2LoggingLevelsError
impl Sync for ListV2LoggingLevelsError
impl Unpin for ListV2LoggingLevelsError
impl UnwindSafe for ListV2LoggingLevelsError
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