pub struct Read<R: Read> { /* private fields */ }
Trait Implementations§
Source§impl<R: Read> Grinder for Read<R>
impl<R: Read> Grinder for Read<R>
type Item = Option<Result<u8, Error>>
type Error = ()
fn next(&mut self) -> Self::Item
fn emit(&mut self, _: ())
fn vent<F, E>(self, f: F) -> Vent<Self, F, E>
fn unwrap(self) -> Unwrap<Self>where
Self: Sized,
fn map_err<F, E>(self, f: F) -> MapErrGrinder<Self, F, E>
fn peekable(self) -> Peekable<Self>where
Self: Sized,
fn lookaheadable(self) -> Lookahead<Self>where
Self: Sized,
fn filter<F>(self, f: F) -> Filter<Self, F>
Auto Trait Implementations§
impl<R> Freeze for Read<R>where
R: Freeze,
impl<R> RefUnwindSafe for Read<R>where
R: RefUnwindSafe,
impl<R> Send for Read<R>where
R: Send,
impl<R> Sync for Read<R>where
R: Sync,
impl<R> Unpin for Read<R>where
R: Unpin,
impl<R> UnwindSafe for Read<R>where
R: 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