Skip to main content

slam_cv/solver/
base.rs

1pub trait Solver {
2    type Output: 'static;
3
4    fn solve(self) -> Self::Output;
5}