[][src]Trait dager::node::Executable

pub trait Executable {
    pub fn execute(&mut self, executor: Arc<Executor>) -> Result<(), DErr>;
}

Trait that is implemented for nodes without inputs. Can be used to start a graph from some "start" node.

Required methods

pub fn execute(&mut self, executor: Arc<Executor>) -> Result<(), DErr>[src]

Loading content...

Implementors

impl<O> Executable for Aggregator<(), O> where
    O: IntoIoSignature
[src]

Loading content...