pub enum CreateDeploymentError {
BadRequest(String),
InternalFailure(String),
LimitExceeded(String),
Unauthorized(String),
}
Expand description
Errors returned by CreateDeployment
Variants§
BadRequest(String)
A request contains unexpected data.
InternalFailure(String)
The service failed to perform an operation due to an internal issue.
LimitExceeded(String)
A resource could not be created because service quotas were exceeded.
An operation failed due to a lack of access.
Implementations§
Source§impl CreateDeploymentError
impl CreateDeploymentError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateDeploymentError>
Trait Implementations§
Source§impl Debug for CreateDeploymentError
impl Debug for CreateDeploymentError
Source§impl Display for CreateDeploymentError
impl Display for CreateDeploymentError
Source§impl Error for CreateDeploymentError
impl Error for CreateDeploymentError
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 CreateDeploymentError
impl PartialEq for CreateDeploymentError
impl StructuralPartialEq for CreateDeploymentError
Auto Trait Implementations§
impl Freeze for CreateDeploymentError
impl RefUnwindSafe for CreateDeploymentError
impl Send for CreateDeploymentError
impl Sync for CreateDeploymentError
impl Unpin for CreateDeploymentError
impl UnwindSafe for CreateDeploymentError
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