pub trait AsEpFactory: 'static + Send + Sync + Unpin {
    fn bind(
        &self,
        bind_spec: TxUrl,
        timeout: KitsuneTimeout
    ) -> BoxFuture<'static, KitsuneResult<Ep>>; }
Expand description

Trait representing an endpoint factory (binder).

Required methods

Bind a new local transport endpoint.

Implementors