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) -> Result<Arc<SimplePlan<F, O>>, Error>; }

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

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>>>,