pub enum StopExecutionError {
ExecutionDoesNotExist(String),
InvalidArn(String),
}
Expand description
Errors returned by StopExecution
Variants§
ExecutionDoesNotExist(String)
The specified execution does not exist.
InvalidArn(String)
The provided Amazon Resource Name (ARN) is invalid.
Implementations§
Source§impl StopExecutionError
impl StopExecutionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StopExecutionError>
Trait Implementations§
Source§impl Debug for StopExecutionError
impl Debug for StopExecutionError
Source§impl Display for StopExecutionError
impl Display for StopExecutionError
Source§impl Error for StopExecutionError
impl Error for StopExecutionError
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 StopExecutionError
impl PartialEq for StopExecutionError
impl StructuralPartialEq for StopExecutionError
Auto Trait Implementations§
impl Freeze for StopExecutionError
impl RefUnwindSafe for StopExecutionError
impl Send for StopExecutionError
impl Sync for StopExecutionError
impl Unpin for StopExecutionError
impl UnwindSafe for StopExecutionError
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