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