Skip to main content

Solvable

Trait Solvable 

Source
pub trait Solvable:
    PlanningSolution
    + Send
    + 'static {
    // Required method
    fn solve(self, runtime: SolverRuntime<Self>);
}
Expand description

Trait for solutions that can run inside the retained lifecycle manager.

Required Methods§

Source

fn solve(self, runtime: SolverRuntime<Self>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§