pub enum StepDecision {
Replay(Value),
Execute,
Error {
kind: String,
message: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for StepDecision
impl Clone for StepDecision
Source§fn clone(&self) -> StepDecision
fn clone(&self) -> StepDecision
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 StepDecision
impl Debug for StepDecision
Source§impl PartialEq for StepDecision
impl PartialEq for StepDecision
Source§fn eq(&self, other: &StepDecision) -> bool
fn eq(&self, other: &StepDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StepDecision
Auto Trait Implementations§
impl Freeze for StepDecision
impl RefUnwindSafe for StepDecision
impl Send for StepDecision
impl Sync for StepDecision
impl Unpin for StepDecision
impl UnsafeUnpin for StepDecision
impl UnwindSafe for StepDecision
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