pub enum StopWorkflowRunError {
EntityNotFound(String),
IllegalWorkflowState(String),
InternalService(String),
InvalidInput(String),
OperationTimeout(String),
}
Expand description
Errors returned by StopWorkflowRun
Variants§
EntityNotFound(String)
A specified entity does not exist
IllegalWorkflowState(String)
The workflow is in an invalid state to perform a requested operation.
InternalService(String)
An internal service error occurred.
InvalidInput(String)
The input provided was not valid.
OperationTimeout(String)
The operation timed out.
Implementations§
Source§impl StopWorkflowRunError
impl StopWorkflowRunError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StopWorkflowRunError>
Trait Implementations§
Source§impl Debug for StopWorkflowRunError
impl Debug for StopWorkflowRunError
Source§impl Display for StopWorkflowRunError
impl Display for StopWorkflowRunError
Source§impl Error for StopWorkflowRunError
impl Error for StopWorkflowRunError
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 StopWorkflowRunError
impl PartialEq for StopWorkflowRunError
impl StructuralPartialEq for StopWorkflowRunError
Auto Trait Implementations§
impl Freeze for StopWorkflowRunError
impl RefUnwindSafe for StopWorkflowRunError
impl Send for StopWorkflowRunError
impl Sync for StopWorkflowRunError
impl Unpin for StopWorkflowRunError
impl UnwindSafe for StopWorkflowRunError
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