pub struct PipelineExecutor<S0, S1>{
pub s0: S0,
pub s1: S1,
}Expand description
Two-stage type-state executor — the simplest non-trivial chain.
Fields§
§s0: S0§s1: S1Implementations§
Source§impl<S0, S1> PipelineExecutor<S0, S1>
impl<S0, S1> PipelineExecutor<S0, S1>
Auto Trait Implementations§
impl<S0, S1> Freeze for PipelineExecutor<S0, S1>
impl<S0, S1> RefUnwindSafe for PipelineExecutor<S0, S1>where
S0: RefUnwindSafe,
S1: RefUnwindSafe,
impl<S0, S1> Send for PipelineExecutor<S0, S1>
impl<S0, S1> Sync for PipelineExecutor<S0, S1>
impl<S0, S1> Unpin for PipelineExecutor<S0, S1>
impl<S0, S1> UnsafeUnpin for PipelineExecutor<S0, S1>where
S0: UnsafeUnpin,
S1: UnsafeUnpin,
impl<S0, S1> UnwindSafe for PipelineExecutor<S0, S1>where
S0: UnwindSafe,
S1: UnwindSafe,
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