pub struct ControlCommand {
pub node: &'static TaskNode,
pub op: ControlOp,
}Expand description
A runtime control request: drive node (and, per the dependency graph and
pool membership, the nodes it implies) in the op direction.
Fields§
§node: &'static TaskNodeThe node to drive.
op: ControlOpThe direction to drive it.
Trait Implementations§
Source§impl Clone for ControlCommand
impl Clone for ControlCommand
Source§fn clone(&self) -> ControlCommand
fn clone(&self) -> ControlCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ControlCommand
Auto Trait Implementations§
impl !RefUnwindSafe for ControlCommand
impl !UnwindSafe for ControlCommand
impl Freeze for ControlCommand
impl Send for ControlCommand
impl Sync for ControlCommand
impl Unpin for ControlCommand
impl UnsafeUnpin for ControlCommand
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