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