pub enum DescribeDimensionKeysError {
InternalServiceError(String),
InvalidArgument(String),
NotAuthorized(String),
}
Expand description
Errors returned by DescribeDimensionKeys
Variants§
InternalServiceError(String)
The request failed due to an unknown error.
InvalidArgument(String)
One of the arguments provided is invalid for this request.
NotAuthorized(String)
The user is not authorized to perform this request.
Implementations§
Source§impl DescribeDimensionKeysError
impl DescribeDimensionKeysError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeDimensionKeysError>
Trait Implementations§
Source§impl Debug for DescribeDimensionKeysError
impl Debug for DescribeDimensionKeysError
Source§impl Display for DescribeDimensionKeysError
impl Display for DescribeDimensionKeysError
Source§impl Error for DescribeDimensionKeysError
impl Error for DescribeDimensionKeysError
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 DescribeDimensionKeysError
Auto Trait Implementations§
impl Freeze for DescribeDimensionKeysError
impl RefUnwindSafe for DescribeDimensionKeysError
impl Send for DescribeDimensionKeysError
impl Sync for DescribeDimensionKeysError
impl Unpin for DescribeDimensionKeysError
impl UnwindSafe for DescribeDimensionKeysError
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