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

A blocking Conjure service.

Required Methods§

source

fn endpoints(&self) -> Vec<Box<dyn Endpoint<I, O> + Sync + Send>>

Returns the endpoints in the service.

Implementors§