pub trait DispatchStringDict {
    type Error: Error;
    type Poly;

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

Required Associated Types

Required Methods

Implementors