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

An async Conjure service.

Required Methods§

Returns the endpoints in the service.

Implementors§