pub struct LinearBuilder { /* private fields */ }Expand description
Builder for the special-case linear graph: each stage feeds the next, no branching, no loops. Sugar over the full Graph<()> builder.
Linear graphs use () as the state type — there’s nothing to merge,
nodes simply pass through. For typed-state pipelines, use the full
builder with a custom state struct.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LinearBuilder
impl !RefUnwindSafe for LinearBuilder
impl Send for LinearBuilder
impl Sync for LinearBuilder
impl Unpin for LinearBuilder
impl UnsafeUnpin for LinearBuilder
impl !UnwindSafe for LinearBuilder
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