pub enum GetBackendEnvironmentError {
BadRequest(String),
InternalFailure(String),
NotFound(String),
Unauthorized(String),
}
Expand description
Errors returned by GetBackendEnvironment
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 GetBackendEnvironmentError
impl GetBackendEnvironmentError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetBackendEnvironmentError>
Trait Implementations§
Source§impl Debug for GetBackendEnvironmentError
impl Debug for GetBackendEnvironmentError
Source§impl Display for GetBackendEnvironmentError
impl Display for GetBackendEnvironmentError
Source§impl Error for GetBackendEnvironmentError
impl Error for GetBackendEnvironmentError
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 GetBackendEnvironmentError
Auto Trait Implementations§
impl Freeze for GetBackendEnvironmentError
impl RefUnwindSafe for GetBackendEnvironmentError
impl Send for GetBackendEnvironmentError
impl Sync for GetBackendEnvironmentError
impl Unpin for GetBackendEnvironmentError
impl UnwindSafe for GetBackendEnvironmentError
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