Trait Dependency

Source
pub trait Dependency<O, L>: Schedulable<L> {
    // Required method
    fn output(&self) -> Option<O>;
}

Required Methods§

Source

fn output(&self) -> Option<O>

Implementors§

Source§

impl<I, O, L> Dependency<O, L> for Node<I, O, L>
where I: Debug + Send + Sync + 'static, O: Debug + Clone + Send + Sync + 'static, L: Debug + Sync + 'static,