pub enum GetSampledRequestsError {
WAFInternalError(String),
WAFNonexistentItem(String),
}Expand description
Errors returned by GetSampledRequests
Variants§
WAFInternalError(String)
The operation failed because of a system problem, even though the request was valid. Retry your request.
WAFNonexistentItem(String)
The operation failed because the referenced object doesn't exist.
Implementations§
Source§impl GetSampledRequestsError
impl GetSampledRequestsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetSampledRequestsError>
Trait Implementations§
Source§impl Debug for GetSampledRequestsError
impl Debug for GetSampledRequestsError
Source§impl Display for GetSampledRequestsError
impl Display for GetSampledRequestsError
Source§impl Error for GetSampledRequestsError
impl Error for GetSampledRequestsError
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 GetSampledRequestsError
impl PartialEq for GetSampledRequestsError
impl StructuralPartialEq for GetSampledRequestsError
Auto Trait Implementations§
impl Freeze for GetSampledRequestsError
impl RefUnwindSafe for GetSampledRequestsError
impl Send for GetSampledRequestsError
impl Sync for GetSampledRequestsError
impl Unpin for GetSampledRequestsError
impl UnwindSafe for GetSampledRequestsError
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