pub enum WorkflowReplayError {
Validation(WorkflowExecutionError),
LiveReplayUnavailable {
leaf: String,
},
InputHash {
reason: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for WorkflowReplayError
impl Clone for WorkflowReplayError
Source§fn clone(&self) -> WorkflowReplayError
fn clone(&self) -> WorkflowReplayError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WorkflowReplayError
impl Debug for WorkflowReplayError
Source§impl Display for WorkflowReplayError
impl Display for WorkflowReplayError
impl Eq for WorkflowReplayError
Source§impl Error for WorkflowReplayError
impl Error for WorkflowReplayError
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 From<WorkflowExecutionError> for WorkflowReplayError
impl From<WorkflowExecutionError> for WorkflowReplayError
Source§fn from(source: WorkflowExecutionError) -> Self
fn from(source: WorkflowExecutionError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WorkflowReplayError
impl PartialEq for WorkflowReplayError
impl StructuralPartialEq for WorkflowReplayError
Auto Trait Implementations§
impl Freeze for WorkflowReplayError
impl RefUnwindSafe for WorkflowReplayError
impl Send for WorkflowReplayError
impl Sync for WorkflowReplayError
impl Unpin for WorkflowReplayError
impl UnsafeUnpin for WorkflowReplayError
impl UnwindSafe for WorkflowReplayError
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