pub enum DescribeAttackError {
AccessDenied(String),
InternalError(String),
}Expand description
Errors returned by DescribeAttack
Variants§
AccessDenied(String)
Exception that indicates the specified AttackId does not exist, or the requester does not have the appropriate permissions to access the AttackId.
InternalError(String)
Exception that indicates that a problem occurred with the service infrastructure. You can retry the request.
Implementations§
Source§impl DescribeAttackError
impl DescribeAttackError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeAttackError>
Trait Implementations§
Source§impl Debug for DescribeAttackError
impl Debug for DescribeAttackError
Source§impl Display for DescribeAttackError
impl Display for DescribeAttackError
Source§impl Error for DescribeAttackError
impl Error for DescribeAttackError
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 DescribeAttackError
impl PartialEq for DescribeAttackError
impl StructuralPartialEq for DescribeAttackError
Auto Trait Implementations§
impl Freeze for DescribeAttackError
impl RefUnwindSafe for DescribeAttackError
impl Send for DescribeAttackError
impl Sync for DescribeAttackError
impl Unpin for DescribeAttackError
impl UnwindSafe for DescribeAttackError
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