pub enum GetAttributeValuesError {
ExpiredNextToken(String),
InternalError(String),
InvalidNextToken(String),
InvalidParameter(String),
NotFound(String),
}Expand description
Errors returned by GetAttributeValues
Variants§
ExpiredNextToken(String)
The pagination token expired. Try again without a pagination token.
InternalError(String)
An error on the server occurred during the processing of your request. Try again later.
InvalidNextToken(String)
The pagination token is invalid. Try again without a pagination token.
InvalidParameter(String)
One or more parameters had an invalid value.
NotFound(String)
The requested resource can't be found.
Implementations§
Source§impl GetAttributeValuesError
impl GetAttributeValuesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetAttributeValuesError>
Trait Implementations§
Source§impl Debug for GetAttributeValuesError
impl Debug for GetAttributeValuesError
Source§impl Display for GetAttributeValuesError
impl Display for GetAttributeValuesError
Source§impl Error for GetAttributeValuesError
impl Error for GetAttributeValuesError
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 GetAttributeValuesError
impl PartialEq for GetAttributeValuesError
impl StructuralPartialEq for GetAttributeValuesError
Auto Trait Implementations§
impl Freeze for GetAttributeValuesError
impl RefUnwindSafe for GetAttributeValuesError
impl Send for GetAttributeValuesError
impl Sync for GetAttributeValuesError
impl Unpin for GetAttributeValuesError
impl UnwindSafe for GetAttributeValuesError
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