pub struct DynamicInjection<S: StateSchema> {
pub nodes: Vec<(String, Arc<dyn GraphNode<S>>)>,
pub edges: Vec<GraphEdge>,
}Expand description
Result of dynamic planning: nodes and edges to inject into a running graph.
Fields§
§nodes: Vec<(String, Arc<dyn GraphNode<S>>)>§edges: Vec<GraphEdge>Auto Trait Implementations§
impl<S> !RefUnwindSafe for DynamicInjection<S>
impl<S> !UnwindSafe for DynamicInjection<S>
impl<S> Freeze for DynamicInjection<S>
impl<S> Send for DynamicInjection<S>
impl<S> Sync for DynamicInjection<S>
impl<S> Unpin for DynamicInjection<S>
impl<S> UnsafeUnpin for DynamicInjection<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