pub enum AddIpRoutesError {
Client(String),
DirectoryUnavailable(String),
EntityAlreadyExists(String),
EntityDoesNotExist(String),
InvalidParameter(String),
IpRouteLimitExceeded(String),
Service(String),
}
Expand description
Errors returned by AddIpRoutes
Variants§
Client(String)
A client exception has occurred.
The specified directory is unavailable or could not be found.
EntityAlreadyExists(String)
The specified entity already exists.
EntityDoesNotExist(String)
The specified entity could not be found.
InvalidParameter(String)
One or more parameters are not valid.
IpRouteLimitExceeded(String)
The maximum allowed number of IP addresses was exceeded. The default limit is 100 IP address blocks.
Service(String)
An exception has occurred in AWS Directory Service.
Implementations§
Source§impl AddIpRoutesError
impl AddIpRoutesError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<AddIpRoutesError>
Trait Implementations§
Source§impl Debug for AddIpRoutesError
impl Debug for AddIpRoutesError
Source§impl Display for AddIpRoutesError
impl Display for AddIpRoutesError
Source§impl Error for AddIpRoutesError
impl Error for AddIpRoutesError
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 AddIpRoutesError
impl PartialEq for AddIpRoutesError
impl StructuralPartialEq for AddIpRoutesError
Auto Trait Implementations§
impl Freeze for AddIpRoutesError
impl RefUnwindSafe for AddIpRoutesError
impl Send for AddIpRoutesError
impl Sync for AddIpRoutesError
impl Unpin for AddIpRoutesError
impl UnwindSafe for AddIpRoutesError
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