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