pub enum Navigation {
Node(String),
Nodes(Vec<String>),
End,
Send(Vec<SendOp>),
Default,
}Expand description
Navigation instructions for graph traversal.
Variants§
Node(String)
Go to a specific node
Nodes(Vec<String>)
Fan-out to multiple nodes simultaneously
End
Terminate execution
Send(Vec<SendOp>)
Dynamic fan-out with per-branch state
Default
Follow normal edges (default behavior)
Trait Implementations§
Source§fn clone(&self) -> Navigation
fn clone(&self) -> Navigation
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 moreAuto Trait Implementations§
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