1pub trait Plugin { 2 fn name(&self) -> &str; 3 fn path(&self) -> &std::path::Path; 4 fn config(&self) -> Option<String>; 5}