pub enum CreateDedicatedIpPoolError {
AlreadyExists(String),
BadRequest(String),
ConcurrentModification(String),
LimitExceeded(String),
TooManyRequests(String),
}Expand description
Errors returned by CreateDedicatedIpPool
Variants§
AlreadyExists(String)
The resource specified in your request already exists.
BadRequest(String)
The input you provided is invalid.
ConcurrentModification(String)
The resource is being modified by another operation or thread.
LimitExceeded(String)
There are too many instances of the specified resource type.
TooManyRequests(String)
Too many requests have been made to the operation.
Implementations§
Source§impl CreateDedicatedIpPoolError
impl CreateDedicatedIpPoolError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateDedicatedIpPoolError>
Trait Implementations§
Source§impl Debug for CreateDedicatedIpPoolError
impl Debug for CreateDedicatedIpPoolError
Source§impl Display for CreateDedicatedIpPoolError
impl Display for CreateDedicatedIpPoolError
Source§impl Error for CreateDedicatedIpPoolError
impl Error for CreateDedicatedIpPoolError
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()
impl StructuralPartialEq for CreateDedicatedIpPoolError
Auto Trait Implementations§
impl Freeze for CreateDedicatedIpPoolError
impl RefUnwindSafe for CreateDedicatedIpPoolError
impl Send for CreateDedicatedIpPoolError
impl Sync for CreateDedicatedIpPoolError
impl Unpin for CreateDedicatedIpPoolError
impl UnwindSafe for CreateDedicatedIpPoolError
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