path_planning/
params.rs

1/* Copyright (C) 2020 Dylan Staatz - All Rights Reserved. */
2
3use crate::error::Result;
4
5pub trait FromParams: Sized {
6  type Params: Clone;
7  fn from_params(params: Self::Params) -> Result<Self>;
8}