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