pub struct NodeConfig<T> { /* private fields */ }
Expand description
Stores configuration for a single generic node (a system or a system set)
The configuration includes the node itself, scheduling metadata (hierarchy: in which sets is the node contained, dependencies: before/after which other nodes should this node run) and the run conditions associated with this node.
Auto Trait Implementations§
impl<T> Freeze for NodeConfig<T>where
T: Freeze,
impl<T> !RefUnwindSafe for NodeConfig<T>
impl<T> Send for NodeConfig<T>where
T: Send,
impl<T> Sync for NodeConfig<T>where
T: Sync,
impl<T> Unpin for NodeConfig<T>where
T: Unpin,
impl<T> !UnwindSafe for NodeConfig<T>
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