pub struct LogNode(pub NodeIndex);Expand description
Logs a provided message.
Tuple Fields§
§0: NodeIndexImplementations§
Trait Implementations§
Source§impl NodeWrapper for LogNode
impl NodeWrapper for LogNode
fn input_stores(self, graph: &Graph) -> impl Iterator<Item = StoreWrapper> + '_
fn output_stores(self, graph: &Graph) -> impl Iterator<Item = StoreWrapper> + '_
fn input_execution(self, graph: &Graph) -> impl Iterator<Item = NodeIndex> + '_
fn output_execution(self, graph: &Graph) -> impl Iterator<Item = NodeIndex> + '_
Source§fn run_after(self, graph: &mut Graph, node: NodeIndex)
fn run_after(self, graph: &mut Graph, node: NodeIndex)
Adds an execution flow from the given node to this node.
Source§fn run_before(self, graph: &mut Graph, node: NodeIndex)
fn run_before(self, graph: &mut Graph, node: NodeIndex)
Adds an execution flow from this node to the given node.
impl Copy for LogNode
Auto Trait Implementations§
impl Freeze for LogNode
impl RefUnwindSafe for LogNode
impl Send for LogNode
impl Sync for LogNode
impl Unpin for LogNode
impl UnwindSafe for LogNode
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