pub enum CompiledEdge<S: State> {
Fixed {
target: String,
},
Conditional {
router: Arc<dyn Router<S>>,
path_map: PathMap,
},
}Expand description
Compiled edge for efficient execution
Represents a fixed or conditional edge after graph compilation.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<S> !RefUnwindSafe for CompiledEdge<S>
impl<S> !UnwindSafe for CompiledEdge<S>
impl<S> Freeze for CompiledEdge<S>
impl<S> Send for CompiledEdge<S>
impl<S> Sync for CompiledEdge<S>
impl<S> Unpin for CompiledEdge<S>
impl<S> UnsafeUnpin for CompiledEdge<S>
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