Skip to main content

Solver

Trait Solver 

Source
pub trait Solver {
    type Output: 'static;

    // Required method
    fn solve(self) -> Self::Output;
}

Required Associated Types§

Source

type Output: 'static

Required Methods§

Source

fn solve(self) -> Self::Output

Implementors§