pub enum FilterLogEventsError {
InvalidParameter(String),
ResourceNotFound(String),
ServiceUnavailable(String),
}Expand description
Errors returned by FilterLogEvents
Variants§
InvalidParameter(String)
A parameter is specified incorrectly.
ResourceNotFound(String)
The specified resource does not exist.
The service cannot complete the request.
Implementations§
Source§impl FilterLogEventsError
impl FilterLogEventsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<FilterLogEventsError>
Trait Implementations§
Source§impl Debug for FilterLogEventsError
impl Debug for FilterLogEventsError
Source§impl Display for FilterLogEventsError
impl Display for FilterLogEventsError
Source§impl Error for FilterLogEventsError
impl Error for FilterLogEventsError
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 FilterLogEventsError
impl PartialEq for FilterLogEventsError
impl StructuralPartialEq for FilterLogEventsError
Auto Trait Implementations§
impl Freeze for FilterLogEventsError
impl RefUnwindSafe for FilterLogEventsError
impl Send for FilterLogEventsError
impl Sync for FilterLogEventsError
impl Unpin for FilterLogEventsError
impl UnwindSafe for FilterLogEventsError
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