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>>>;
}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>>>;
}