pub struct LegacyBatchValuesIteratorFromIterator<IT: Iterator> { /* private fields */ }
Expand description
Implements BatchValuesIterator
from an Iterator
over references to things that implement ValueList
Essentially used internally by this lib to provide implementers of BatchValuesIterator
for cases
that always serialize the same concrete ValueList
type
Trait Implementations§
Source§impl<IT> From<IT> for LegacyBatchValuesIteratorFromIterator<IT>
impl<IT> From<IT> for LegacyBatchValuesIteratorFromIterator<IT>
Source§impl<'r, 'a: 'r, IT, VL> LegacyBatchValuesIterator<'r> for LegacyBatchValuesIteratorFromIterator<IT>
impl<'r, 'a: 'r, IT, VL> LegacyBatchValuesIterator<'r> for LegacyBatchValuesIteratorFromIterator<IT>
Auto Trait Implementations§
impl<IT> Freeze for LegacyBatchValuesIteratorFromIterator<IT>where
IT: Freeze,
impl<IT> RefUnwindSafe for LegacyBatchValuesIteratorFromIterator<IT>where
IT: RefUnwindSafe,
impl<IT> Send for LegacyBatchValuesIteratorFromIterator<IT>where
IT: Send,
impl<IT> Sync for LegacyBatchValuesIteratorFromIterator<IT>where
IT: Sync,
impl<IT> Unpin for LegacyBatchValuesIteratorFromIterator<IT>where
IT: Unpin,
impl<IT> UnwindSafe for LegacyBatchValuesIteratorFromIterator<IT>where
IT: 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