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§
fn into_runnable(self) -> TractResult<Arc<RunnableModel<F, O>>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".