pub trait UnblockingAsyncWrapper<U, S> {
    // Required method
    fn new(unblocker: U, sync: S) -> Self;
}

Required Methods§

source

fn new(unblocker: U, sync: S) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<U, CV, E> UnblockingAsyncWrapper<U, E> for AsyncEventBus<U, CV, E>

source§

impl<U, P, PB> UnblockingAsyncWrapper<U, PB> for AsyncPostbox<U, P, PB>

source§

impl<U, R, C> UnblockingAsyncWrapper<U, C> for AsyncClient<U, Arc<Mutex<R, C>>>
where R: RawMutex,