pub enum ListSubscriptionsError {
AuthorizationError(String),
InternalError(String),
InvalidParameter(String),
}Expand description
Errors returned by ListSubscriptions
Variants§
AuthorizationError(String)
Indicates that the user has been denied access to the requested resource.
InternalError(String)
Indicates an internal service error.
InvalidParameter(String)
Indicates that a request parameter does not comply with the associated constraints.
Implementations§
Source§impl ListSubscriptionsError
impl ListSubscriptionsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListSubscriptionsError>
Trait Implementations§
Source§impl Debug for ListSubscriptionsError
impl Debug for ListSubscriptionsError
Source§impl Display for ListSubscriptionsError
impl Display for ListSubscriptionsError
Source§impl Error for ListSubscriptionsError
impl Error for ListSubscriptionsError
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 ListSubscriptionsError
impl PartialEq for ListSubscriptionsError
impl StructuralPartialEq for ListSubscriptionsError
Auto Trait Implementations§
impl Freeze for ListSubscriptionsError
impl RefUnwindSafe for ListSubscriptionsError
impl Send for ListSubscriptionsError
impl Sync for ListSubscriptionsError
impl Unpin for ListSubscriptionsError
impl UnwindSafe for ListSubscriptionsError
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