pub enum CreateBillingGroupError {
InternalFailure(String),
InvalidRequest(String),
ResourceAlreadyExists(String),
Throttling(String),
}Expand description
Errors returned by CreateBillingGroup
Variants§
InternalFailure(String)
An unexpected error has occurred.
InvalidRequest(String)
The request is not valid.
ResourceAlreadyExists(String)
The resource already exists.
Throttling(String)
The rate exceeds the limit.
Implementations§
Source§impl CreateBillingGroupError
impl CreateBillingGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateBillingGroupError>
Trait Implementations§
Source§impl Debug for CreateBillingGroupError
impl Debug for CreateBillingGroupError
Source§impl Display for CreateBillingGroupError
impl Display for CreateBillingGroupError
Source§impl Error for CreateBillingGroupError
impl Error for CreateBillingGroupError
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 CreateBillingGroupError
impl PartialEq for CreateBillingGroupError
impl StructuralPartialEq for CreateBillingGroupError
Auto Trait Implementations§
impl Freeze for CreateBillingGroupError
impl RefUnwindSafe for CreateBillingGroupError
impl Send for CreateBillingGroupError
impl Sync for CreateBillingGroupError
impl Unpin for CreateBillingGroupError
impl UnwindSafe for CreateBillingGroupError
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