pub trait FromJson<'a>where
Self: TypeInfo + Deserialize<'a>,{
// Required methods
fn from_json_file(filename: &str, config: Config) -> Result<Self, StamError>;
fn from_json_str(string: &str, config: Config) -> Result<Self, StamError>;
}