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