pub enum CreateProjectError {
AccountLimitExceeded(String),
InvalidInput(String),
ResourceAlreadyExists(String),
}
Expand description
Errors returned by CreateProject
Variants§
AccountLimitExceeded(String)
An Amazon Web Services service limit was exceeded for the calling Amazon Web Services account.
InvalidInput(String)
The input value that was provided is not valid.
ResourceAlreadyExists(String)
The specified Amazon Web Services resource cannot be created, because an Amazon Web Services resource with the same settings already exists.
Implementations§
Source§impl CreateProjectError
impl CreateProjectError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateProjectError>
Trait Implementations§
Source§impl Debug for CreateProjectError
impl Debug for CreateProjectError
Source§impl Display for CreateProjectError
impl Display for CreateProjectError
Source§impl Error for CreateProjectError
impl Error for CreateProjectError
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 CreateProjectError
impl PartialEq for CreateProjectError
impl StructuralPartialEq for CreateProjectError
Auto Trait Implementations§
impl Freeze for CreateProjectError
impl RefUnwindSafe for CreateProjectError
impl Send for CreateProjectError
impl Sync for CreateProjectError
impl Unpin for CreateProjectError
impl UnwindSafe for CreateProjectError
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