Trait DispatchStringTuple

Source
pub trait DispatchStringTuple {
    type Error: Error;

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

Required Associated Types§

Required Methods§

Source

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

Implementors§