pub enum ListApplicationsError {
BadRequest(String),
Forbidden(String),
InternalServerError(String),
NotFound(String),
}
Expand description
Errors returned by ListApplications
Variants§
BadRequest(String)
One of the parameters in the request is invalid.
Forbidden(String)
The client is not authenticated.
InternalServerError(String)
The AWS Serverless Application Repository service encountered an internal error.
NotFound(String)
The resource (for example, an access policy statement) specified in the request doesn't exist.
Implementations§
Source§impl ListApplicationsError
impl ListApplicationsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListApplicationsError>
Trait Implementations§
Source§impl Debug for ListApplicationsError
impl Debug for ListApplicationsError
Source§impl Display for ListApplicationsError
impl Display for ListApplicationsError
Source§impl Error for ListApplicationsError
impl Error for ListApplicationsError
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 ListApplicationsError
impl PartialEq for ListApplicationsError
impl StructuralPartialEq for ListApplicationsError
Auto Trait Implementations§
impl Freeze for ListApplicationsError
impl RefUnwindSafe for ListApplicationsError
impl Send for ListApplicationsError
impl Sync for ListApplicationsError
impl Unpin for ListApplicationsError
impl UnwindSafe for ListApplicationsError
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