pub enum EdgeCondition {
Always,
Contains(String),
End,
}Expand description
Transition predicate for graph orchestration.
Variants§
Always
Always traverse this edge.
Contains(String)
Traverse when output contains a keyword.
End
Terminal edge marker.
Trait Implementations§
Source§impl Clone for EdgeCondition
impl Clone for EdgeCondition
Source§fn clone(&self) -> EdgeCondition
fn clone(&self) -> EdgeCondition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EdgeCondition
impl RefUnwindSafe for EdgeCondition
impl Send for EdgeCondition
impl Sync for EdgeCondition
impl Unpin for EdgeCondition
impl UnsafeUnpin for EdgeCondition
impl UnwindSafe for EdgeCondition
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