pub enum InvalidateProjectCacheError {
InvalidInput(String),
ResourceNotFound(String),
}
Expand description
Errors returned by InvalidateProjectCache
Variants§
InvalidInput(String)
The input value that was provided is not valid.
ResourceNotFound(String)
The specified AWS resource cannot be found.
Implementations§
Source§impl InvalidateProjectCacheError
impl InvalidateProjectCacheError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<InvalidateProjectCacheError>
Trait Implementations§
Source§impl Debug for InvalidateProjectCacheError
impl Debug for InvalidateProjectCacheError
Source§impl Error for InvalidateProjectCacheError
impl Error for InvalidateProjectCacheError
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 InvalidateProjectCacheError
Auto Trait Implementations§
impl Freeze for InvalidateProjectCacheError
impl RefUnwindSafe for InvalidateProjectCacheError
impl Send for InvalidateProjectCacheError
impl Sync for InvalidateProjectCacheError
impl Unpin for InvalidateProjectCacheError
impl UnwindSafe for InvalidateProjectCacheError
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