Trait htrpc::Procedure [] [src]

pub trait Procedure {
    type Request: RpcRequest;
    type Response: RpcResponse;
    fn method() -> HttpMethod;
fn entry_point() -> EntryPoint; }

Procedure definition.

Associated Types

The request type of this procedure.

The response type of this procedure.

Required Methods

The HTTP method which this procedure handles.

The entry point of this procedure.

Implementors