pub trait BindAdapt: 'static + Send + Sync + Unpin {
    fn bind(&self, url: TxUrl, timeout: KitsuneTimeout) -> EndpointFut;
}
Expand description

Tx bind adapter represents the ability to bind local endpoints.

Required methods

Bind a local endpoint, given a url spec.

Implementors