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: boolThe 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