struct TeeBuffer<A, I> {
backlog: VecDeque<A>,
iter: I,
owner: bool,
}
Expand description
Common buffer object for the two tee halves
Fields§
§backlog: VecDeque<A>
§iter: I
§owner: bool
The owner field indicates which id should read from the backlog
Trait Implementations§
Auto Trait Implementations§
impl<A, I> Freeze for TeeBuffer<A, I>where
I: Freeze,
impl<A, I> RefUnwindSafe for TeeBuffer<A, I>where
I: RefUnwindSafe,
A: RefUnwindSafe,
impl<A, I> Send for TeeBuffer<A, I>
impl<A, I> Sync for TeeBuffer<A, I>
impl<A, I> Unpin for TeeBuffer<A, I>
impl<A, I> UnwindSafe for TeeBuffer<A, I>where
I: UnwindSafe,
A: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more