pub struct ChainStep {
pub name: &'static str,
pub kind: ChainKind,
}Expand description
One entry in a jig’s chain: the called jig’s name plus how it was composed with the surrounding pipeline.
Fields§
§name: &'static strName of the jig referenced at this step.
kind: ChainKindCompositional relationship to the surrounding jig.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChainStep
impl RefUnwindSafe for ChainStep
impl Send for ChainStep
impl Sync for ChainStep
impl Unpin for ChainStep
impl UnsafeUnpin for ChainStep
impl UnwindSafe for ChainStep
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