pub enum RefreshCacheError {
InternalServerError(String),
InvalidGatewayRequest(String),
}Expand description
Errors returned by RefreshCache
Variants§
InternalServerError(String)
An internal server error has occurred during the request. For more information, see the error and message fields.
InvalidGatewayRequest(String)
An exception occurred because an invalid gateway request was issued to the service. For more information, see the error and message fields.
Implementations§
Source§impl RefreshCacheError
impl RefreshCacheError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<RefreshCacheError>
Trait Implementations§
Source§impl Debug for RefreshCacheError
impl Debug for RefreshCacheError
Source§impl Display for RefreshCacheError
impl Display for RefreshCacheError
Source§impl Error for RefreshCacheError
impl Error for RefreshCacheError
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 RefreshCacheError
impl PartialEq for RefreshCacheError
impl StructuralPartialEq for RefreshCacheError
Auto Trait Implementations§
impl Freeze for RefreshCacheError
impl RefUnwindSafe for RefreshCacheError
impl Send for RefreshCacheError
impl Sync for RefreshCacheError
impl Unpin for RefreshCacheError
impl UnwindSafe for RefreshCacheError
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