pub enum DeleteBillingGroupError {
InternalFailure(String),
InvalidRequest(String),
Throttling(String),
VersionConflict(String),
}Expand description
Errors returned by DeleteBillingGroup
Variants§
InternalFailure(String)
An unexpected error has occurred.
InvalidRequest(String)
The request is not valid.
Throttling(String)
The rate exceeds the limit.
VersionConflict(String)
An exception thrown when the version of an entity specified with the expectedVersion parameter does not match the latest version in the system.
Implementations§
Source§impl DeleteBillingGroupError
impl DeleteBillingGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteBillingGroupError>
Trait Implementations§
Source§impl Debug for DeleteBillingGroupError
impl Debug for DeleteBillingGroupError
Source§impl Display for DeleteBillingGroupError
impl Display for DeleteBillingGroupError
Source§impl Error for DeleteBillingGroupError
impl Error for DeleteBillingGroupError
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 DeleteBillingGroupError
impl PartialEq for DeleteBillingGroupError
impl StructuralPartialEq for DeleteBillingGroupError
Auto Trait Implementations§
impl Freeze for DeleteBillingGroupError
impl RefUnwindSafe for DeleteBillingGroupError
impl Send for DeleteBillingGroupError
impl Sync for DeleteBillingGroupError
impl Unpin for DeleteBillingGroupError
impl UnwindSafe for DeleteBillingGroupError
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