pub struct EvalIter<R> { /* private fields */ }Available on crate feature
std only.Expand description
Reads data from R passing each line to an Evaluator to be evaluated.
Implementations§
Trait Implementations§
Source§impl<R> LendingIterator for EvalIter<R>where
R: BufRead,
impl<R> LendingIterator for EvalIter<R>where
R: BufRead,
Source§fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
fn by_ref(&mut self) -> &mut Selfwhere
Self: Sized,
Read
Iterator::by_ref.Source§fn lend_try_fold<B, E, F>(&mut self, init: B, f: F) -> Result<B, E>
fn lend_try_fold<B, E, F>(&mut self, init: B, f: F) -> Result<B, E>
Read
Iterator::try_fold. Read moreAuto Trait Implementations§
impl<R> Freeze for EvalIter<R>where
R: Freeze,
impl<R> !RefUnwindSafe for EvalIter<R>
impl<R> !Send for EvalIter<R>
impl<R> !Sync for EvalIter<R>
impl<R> Unpin for EvalIter<R>where
R: Unpin,
impl<R> !UnwindSafe for EvalIter<R>
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