pub enum GetRealtimeLogConfigError {
AccessDenied(String),
InvalidArgument(String),
NoSuchRealtimeLogConfig(String),
}
Expand description
Errors returned by GetRealtimeLogConfig
Variants§
AccessDenied(String)
Access denied.
InvalidArgument(String)
An argument is invalid.
NoSuchRealtimeLogConfig(String)
The real-time log configuration does not exist.
Implementations§
Source§impl GetRealtimeLogConfigError
impl GetRealtimeLogConfigError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetRealtimeLogConfigError>
Trait Implementations§
Source§impl Debug for GetRealtimeLogConfigError
impl Debug for GetRealtimeLogConfigError
Source§impl Display for GetRealtimeLogConfigError
impl Display for GetRealtimeLogConfigError
Source§impl Error for GetRealtimeLogConfigError
impl Error for GetRealtimeLogConfigError
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()
impl StructuralPartialEq for GetRealtimeLogConfigError
Auto Trait Implementations§
impl Freeze for GetRealtimeLogConfigError
impl RefUnwindSafe for GetRealtimeLogConfigError
impl Send for GetRealtimeLogConfigError
impl Sync for GetRealtimeLogConfigError
impl Unpin for GetRealtimeLogConfigError
impl UnwindSafe for GetRealtimeLogConfigError
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