pub enum CreateSystemInstanceError {
InternalFailure(String),
InvalidRequest(String),
LimitExceeded(String),
ResourceAlreadyExists(String),
Throttling(String),
}
Expand description
Errors returned by CreateSystemInstance
Variants§
InternalFailure(String)
InvalidRequest(String)
LimitExceeded(String)
ResourceAlreadyExists(String)
Throttling(String)
Implementations§
Source§impl CreateSystemInstanceError
impl CreateSystemInstanceError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateSystemInstanceError>
Trait Implementations§
Source§impl Debug for CreateSystemInstanceError
impl Debug for CreateSystemInstanceError
Source§impl Display for CreateSystemInstanceError
impl Display for CreateSystemInstanceError
Source§impl Error for CreateSystemInstanceError
impl Error for CreateSystemInstanceError
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 CreateSystemInstanceError
Auto Trait Implementations§
impl Freeze for CreateSystemInstanceError
impl RefUnwindSafe for CreateSystemInstanceError
impl Send for CreateSystemInstanceError
impl Sync for CreateSystemInstanceError
impl Unpin for CreateSystemInstanceError
impl UnwindSafe for CreateSystemInstanceError
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