pub trait DispatchStringTuple { type Error: Error; // Required method fn dispatch( &self, method: &str, arguments: &str, ) -> Result<String, Error<Self::Error>>; }