Trait proxer::Endpoint [] [src]

pub trait Endpoint {
    type ResponseType: Debug + Clone;
    fn get_params_mut(&mut self) -> &mut HashMap<String, String>;
fn send(self) -> Result<Self::ResponseType, Error>; }

Every struct that is an endpoint, implements this trait.

Associated Types

Required Methods

Implementors