[][src]Type Definition futures_intrusive::channel::Channel

type Channel<T, A> = GenericChannel<RawMutex, T, ArrayRingBuf<T, A>>;

A GenericChannel implementation backed by parking_lot.

Trait Implementations

impl<T: Send, A> Sync for Channel<T, A> where
    A: AsMut<[T]> + AsRef<[T]> + RealArray<T> + Sync
[src]