pub enum UpdateTestGridProjectError {
Argument(String),
InternalService(String),
NotFound(String),
}Expand description
Errors returned by UpdateTestGridProject
Variants§
Argument(String)
An invalid argument was specified.
InternalService(String)
An internal exception was raised in the service. Contact aws-devicefarm-support@amazon.com if you see this error.
NotFound(String)
The specified entity was not found.
Implementations§
Source§impl UpdateTestGridProjectError
impl UpdateTestGridProjectError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateTestGridProjectError>
Trait Implementations§
Source§impl Debug for UpdateTestGridProjectError
impl Debug for UpdateTestGridProjectError
Source§impl Display for UpdateTestGridProjectError
impl Display for UpdateTestGridProjectError
Source§impl Error for UpdateTestGridProjectError
impl Error for UpdateTestGridProjectError
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 UpdateTestGridProjectError
Auto Trait Implementations§
impl Freeze for UpdateTestGridProjectError
impl RefUnwindSafe for UpdateTestGridProjectError
impl Send for UpdateTestGridProjectError
impl Sync for UpdateTestGridProjectError
impl Unpin for UpdateTestGridProjectError
impl UnwindSafe for UpdateTestGridProjectError
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