pub enum DeleteTestGridProjectError {
Argument(String),
CannotDelete(String),
InternalService(String),
NotFound(String),
}Expand description
Errors returned by DeleteTestGridProject
Variants§
Argument(String)
An invalid argument was specified.
CannotDelete(String)
The requested object could not be deleted.
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 DeleteTestGridProjectError
impl DeleteTestGridProjectError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteTestGridProjectError>
Trait Implementations§
Source§impl Debug for DeleteTestGridProjectError
impl Debug for DeleteTestGridProjectError
Source§impl Display for DeleteTestGridProjectError
impl Display for DeleteTestGridProjectError
Source§impl Error for DeleteTestGridProjectError
impl Error for DeleteTestGridProjectError
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 DeleteTestGridProjectError
Auto Trait Implementations§
impl Freeze for DeleteTestGridProjectError
impl RefUnwindSafe for DeleteTestGridProjectError
impl Send for DeleteTestGridProjectError
impl Sync for DeleteTestGridProjectError
impl Unpin for DeleteTestGridProjectError
impl UnwindSafe for DeleteTestGridProjectError
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