pub enum DeleteIpGroupError {
AccessDenied(String),
InvalidParameterValues(String),
ResourceAssociated(String),
ResourceNotFound(String),
}Expand description
Errors returned by DeleteIpGroup
Variants§
AccessDenied(String)
The user is not authorized to access a resource.
InvalidParameterValues(String)
One or more parameter values are not valid.
ResourceAssociated(String)
The resource is associated with a directory.
ResourceNotFound(String)
The resource could not be found.
Implementations§
Source§impl DeleteIpGroupError
impl DeleteIpGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteIpGroupError>
Trait Implementations§
Source§impl Debug for DeleteIpGroupError
impl Debug for DeleteIpGroupError
Source§impl Display for DeleteIpGroupError
impl Display for DeleteIpGroupError
Source§impl Error for DeleteIpGroupError
impl Error for DeleteIpGroupError
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 DeleteIpGroupError
impl PartialEq for DeleteIpGroupError
impl StructuralPartialEq for DeleteIpGroupError
Auto Trait Implementations§
impl Freeze for DeleteIpGroupError
impl RefUnwindSafe for DeleteIpGroupError
impl Send for DeleteIpGroupError
impl Sync for DeleteIpGroupError
impl Unpin for DeleteIpGroupError
impl UnwindSafe for DeleteIpGroupError
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