Skip to main content

IntoRunnable

Trait IntoRunnable 

Source
pub trait IntoRunnable<F, O>
where F: Fact + Clone + 'static, O: Debug + Display + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static,
{ // Required method fn into_runnable(self) -> TractResult<Arc<RunnableModel<F, O>>>; }

Required Methods§

Implementors§

Source§

impl<G, F, O> IntoRunnable<F, O> for G
where F: Fact + Clone + 'static, O: Debug + Display + AsRef<dyn Op> + AsMut<dyn Op> + Clone + 'static, G: Into<Arc<Graph<F, O>>>,