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