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