pub trait WeightParser: Send + Sync {
// Required methods
fn parse(&self, path: &Path) -> Result<Model>;
fn format_name(&self) -> &'static str;
}pub trait WeightParser: Send + Sync {
// Required methods
fn parse(&self, path: &Path) -> Result<Model>;
fn format_name(&self) -> &'static str;
}