pub trait KeyValuewhere Self: DynClone + Send + Sync,{ // Required methods fn key(&self) -> &str; fn value(&self) -> &str; }