pub struct SplitBranch { /* private fields */ }Expand description
One declared linear branch of an M4 split.
Implementations§
Source§impl SplitBranch
impl SplitBranch
Sourcepub fn new(steps: Vec<StepNode>) -> Self
pub fn new(steps: Vec<StepNode>) -> Self
Declares a branch from its ordered tasklet or chunk steps.
Cardinality and identifier uniqueness are checked by
FlowGraph::compile, so builders can assemble a complete diagnostic
instead of panicking while under construction.
Trait Implementations§
Source§impl Clone for SplitBranch
impl Clone for SplitBranch
Source§fn clone(&self) -> SplitBranch
fn clone(&self) -> SplitBranch
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 SplitBranch
impl Debug for SplitBranch
impl Eq for SplitBranch
Source§impl PartialEq for SplitBranch
impl PartialEq for SplitBranch
impl StructuralPartialEq for SplitBranch
Auto Trait Implementations§
impl Freeze for SplitBranch
impl RefUnwindSafe for SplitBranch
impl Send for SplitBranch
impl Sync for SplitBranch
impl Unpin for SplitBranch
impl UnsafeUnpin for SplitBranch
impl UnwindSafe for SplitBranch
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