pub trait DispatchStringTuple {
    type Error: Error;

    fn dispatch(
        &self,
        method: &str,
        arguments: &str
    ) -> Result<String, Error<Self::Error>>; }

Required Associated Types

Required Methods

Implementors