pub trait Service<I, O> {
    fn endpoints(&self) -> Vec<Box<dyn Endpoint<I, O> + Sync + Send>> ;
}
Expand description

A blocking Conjure service.

Required Methods§

Returns the endpoints in the service.

Implementors§