pub struct NodeOut<S: GraphState> {
pub update: S::Update,
pub goto: Goto,
}Expand description
Output of a node’s execute: a typed state delta + where to go next.
Fields§
§update: S::UpdateState update — applied via per-field reducers in this superstep’s atomic merge.
goto: GotoRouting decision.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for NodeOut<S>
impl<S> RefUnwindSafe for NodeOut<S>
impl<S> Send for NodeOut<S>
impl<S> Sync for NodeOut<S>
impl<S> Unpin for NodeOut<S>
impl<S> UnsafeUnpin for NodeOut<S>
impl<S> UnwindSafe for NodeOut<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