pub trait Service<I, O> { // Required method fn endpoints( &self, runtime: &Arc<ConjureRuntime>, ) -> Vec<Box<dyn Endpoint<I, O> + Sync + Send>>; }
A blocking Conjure service.
Returns the endpoints in the service.