pub trait RbRef: Deref<Target = Self::Rb> {
    type Rb: ?Sized;
}
Expand description

An abstract reference to the ring buffer.

Required Associated Types§

Implementations on Foreign Types§

source§

impl<B: ?Sized> RbRef for Arc<B>

§

type Rb = B

source§

impl<B: ?Sized> RbRef for Rc<B>

§

type Rb = B

source§

impl<'a, B: ?Sized> RbRef for &'a B

§

type Rb = B

Implementors§

source§

impl<B: ?Sized> RbRef for RbWrap<B>

§

type Rb = B