path-planning 0.1.0

Path Planning Algorithms implemented in Rust.
Documentation
1
2
3
4
5
6
7
8
/* Copyright (C) 2020 Dylan Staatz - All Rights Reserved. */

use crate::error::Result;

pub trait FromParams: Sized {
  type Params: Clone;
  fn from_params(params: Self::Params) -> Result<Self>;
}