pub enum UpdateAppError {
BadRequest(String),
InternalFailure(String),
NotFound(String),
Unauthorized(String),
}
Expand description
Errors returned by UpdateApp
Variants§
BadRequest(String)
A request contains unexpected data.
InternalFailure(String)
The service failed to perform an operation due to an internal issue.
NotFound(String)
An entity was not found during an operation.
An operation failed due to a lack of access.
Implementations§
Source§impl UpdateAppError
impl UpdateAppError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<UpdateAppError>
Trait Implementations§
Source§impl Debug for UpdateAppError
impl Debug for UpdateAppError
Source§impl Display for UpdateAppError
impl Display for UpdateAppError
Source§impl Error for UpdateAppError
impl Error for UpdateAppError
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 UpdateAppError
impl PartialEq for UpdateAppError
impl StructuralPartialEq for UpdateAppError
Auto Trait Implementations§
impl Freeze for UpdateAppError
impl RefUnwindSafe for UpdateAppError
impl Send for UpdateAppError
impl Sync for UpdateAppError
impl Unpin for UpdateAppError
impl UnwindSafe for UpdateAppError
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