pub enum SetV2LoggingLevelError {
Internal(String),
InvalidRequest(String),
NotConfigured(String),
ServiceUnavailable(String),
}Expand description
Errors returned by SetV2LoggingLevel
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 SetV2LoggingLevelError
impl SetV2LoggingLevelError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<SetV2LoggingLevelError>
Trait Implementations§
Source§impl Debug for SetV2LoggingLevelError
impl Debug for SetV2LoggingLevelError
Source§impl Display for SetV2LoggingLevelError
impl Display for SetV2LoggingLevelError
Source§impl Error for SetV2LoggingLevelError
impl Error for SetV2LoggingLevelError
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 SetV2LoggingLevelError
impl PartialEq for SetV2LoggingLevelError
impl StructuralPartialEq for SetV2LoggingLevelError
Auto Trait Implementations§
impl Freeze for SetV2LoggingLevelError
impl RefUnwindSafe for SetV2LoggingLevelError
impl Send for SetV2LoggingLevelError
impl Sync for SetV2LoggingLevelError
impl Unpin for SetV2LoggingLevelError
impl UnwindSafe for SetV2LoggingLevelError
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