Trait wd_balancing::Linker[][src]

pub trait Linker<K: Send> {
    fn acquire<'life0, 'async_trait>(
        &'life0 self,
        _k: K
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn release<'life0, 'async_trait>(
        &'life0 self,
        _k: K
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementors