pub enum DescribeStateMachineForExecutionError {
ExecutionDoesNotExist(String),
InvalidArn(String),
}
Expand description
Errors returned by DescribeStateMachineForExecution
Variants§
ExecutionDoesNotExist(String)
The specified execution does not exist.
InvalidArn(String)
The provided Amazon Resource Name (ARN) is invalid.
Implementations§
Trait Implementations§
Source§impl Error for DescribeStateMachineForExecutionError
impl Error for DescribeStateMachineForExecutionError
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 DescribeStateMachineForExecutionError
impl PartialEq for DescribeStateMachineForExecutionError
Source§fn eq(&self, other: &DescribeStateMachineForExecutionError) -> bool
fn eq(&self, other: &DescribeStateMachineForExecutionError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeStateMachineForExecutionError
Auto Trait Implementations§
impl Freeze for DescribeStateMachineForExecutionError
impl RefUnwindSafe for DescribeStateMachineForExecutionError
impl Send for DescribeStateMachineForExecutionError
impl Sync for DescribeStateMachineForExecutionError
impl Unpin for DescribeStateMachineForExecutionError
impl UnwindSafe for DescribeStateMachineForExecutionError
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