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>; }