pub struct ScheduleConfig<T: Schedulable> { /* 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 ScheduleConfig<T>
impl<T> !RefUnwindSafe for ScheduleConfig<T>
impl<T> Send for ScheduleConfig<T>
impl<T> Sync for ScheduleConfig<T>
impl<T> Unpin for ScheduleConfig<T>
impl<T> !UnwindSafe for ScheduleConfig<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
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.