LocalAsyncService

Trait LocalAsyncService 

Source
pub trait LocalAsyncService<I, O> {
    // Required method
    fn endpoints(
        &self,
        runtime: &Arc<ConjureRuntime>,
    ) -> Vec<BoxLocalAsyncEndpoint<'static, I, O>>;
}
Expand description

A local async Conjure service.

Required Methods§

Source

fn endpoints( &self, runtime: &Arc<ConjureRuntime>, ) -> Vec<BoxLocalAsyncEndpoint<'static, I, O>>

Returns the endpoints in the service.

Implementors§