pub trait RestType<I: Serialize + DeserializeOwned, O: Serialize + DeserializeOwned> {
    fn path(&self) -> &str;
fn method(&self) -> &HttpMethod; fn build<P: Into<String>>(method: HttpMethod, path: P) -> RestFluent<I, O> { ... } }

Required methods

Provided methods

Implementors