pub enum CreateOptionGroupError {
OptionGroupAlreadyExistsFault(String),
OptionGroupQuotaExceededFault(String),
}
Expand description
Errors returned by CreateOptionGroup
Variants§
OptionGroupAlreadyExistsFault(String)
The option group you are trying to create already exists.
OptionGroupQuotaExceededFault(String)
The quota of 20 option groups was exceeded for this AWS account.
Implementations§
Source§impl CreateOptionGroupError
impl CreateOptionGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateOptionGroupError>
Trait Implementations§
Source§impl Debug for CreateOptionGroupError
impl Debug for CreateOptionGroupError
Source§impl Display for CreateOptionGroupError
impl Display for CreateOptionGroupError
Source§impl Error for CreateOptionGroupError
impl Error for CreateOptionGroupError
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 CreateOptionGroupError
impl PartialEq for CreateOptionGroupError
impl StructuralPartialEq for CreateOptionGroupError
Auto Trait Implementations§
impl Freeze for CreateOptionGroupError
impl RefUnwindSafe for CreateOptionGroupError
impl Send for CreateOptionGroupError
impl Sync for CreateOptionGroupError
impl Unpin for CreateOptionGroupError
impl UnwindSafe for CreateOptionGroupError
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