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