pub struct StateNode {
pub id: StateId,
pub state: DynState,
}Expand description
Planned state plus the runtime implementation that will execute it.
Fields§
§id: StateIdStable identifier assigned by the planner.
state: DynStateRuntime implementation invoked for this node.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StateNode
impl !RefUnwindSafe for StateNode
impl Send for StateNode
impl Sync for StateNode
impl Unpin for StateNode
impl UnsafeUnpin for StateNode
impl !UnwindSafe for StateNode
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