pub enum AddAttributesToFindingsError {
AccessDenied(String),
Internal(String),
InvalidInput(String),
NoSuchEntity(String),
ServiceTemporarilyUnavailable(String),
}Expand description
Errors returned by AddAttributesToFindings
Variants§
AccessDenied(String)
You do not have required permissions to access the requested resource.
Internal(String)
Internal server error.
InvalidInput(String)
The request was rejected because an invalid or out-of-range value was supplied for an input parameter.
NoSuchEntity(String)
The request was rejected because it referenced an entity that does not exist. The error code describes the entity.
The serice is temporary unavailable.
Implementations§
Trait Implementations§
Source§impl Debug for AddAttributesToFindingsError
impl Debug for AddAttributesToFindingsError
Source§impl Error for AddAttributesToFindingsError
impl Error for AddAttributesToFindingsError
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 AddAttributesToFindingsError
impl PartialEq for AddAttributesToFindingsError
Source§fn eq(&self, other: &AddAttributesToFindingsError) -> bool
fn eq(&self, other: &AddAttributesToFindingsError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AddAttributesToFindingsError
Auto Trait Implementations§
impl Freeze for AddAttributesToFindingsError
impl RefUnwindSafe for AddAttributesToFindingsError
impl Send for AddAttributesToFindingsError
impl Sync for AddAttributesToFindingsError
impl Unpin for AddAttributesToFindingsError
impl UnwindSafe for AddAttributesToFindingsError
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