1 2 3 4 5 6 7
pub trait Provider: Send + Sync { fn method_id(&self) -> String; fn id(&self) -> Option<String>; fn name(&self) -> String; }