pub enum ChainKind {
Then,
Fork,
}Expand description
How a chain entry was reached from the surrounding jig.
Variants§
Then
Reached via .then(...) — sequential composition. Output of the
previous step flows into this one.
Fork
Reached via fork!(...) — alternative arm. Sibling arms do not
flow into each other; exactly one arm runs per request.
Trait Implementations§
impl Copy for ChainKind
impl Eq for ChainKind
impl StructuralPartialEq for ChainKind
Auto Trait Implementations§
impl Freeze for ChainKind
impl RefUnwindSafe for ChainKind
impl Send for ChainKind
impl Sync for ChainKind
impl Unpin for ChainKind
impl UnsafeUnpin for ChainKind
impl UnwindSafe for ChainKind
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