pub struct LegacyBatchValuesIteratorFromIterator<IT: Iterator> { /* private fields */ }
👎Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
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>
source§fn next_serialized(&mut self) -> Option<SerializedResult<'r>>
fn next_serialized(&mut self) -> Option<SerializedResult<'r>>
👎Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
source§fn write_next_to_request(
&mut self,
buf: &mut impl BufMut,
) -> Option<Result<(), SerializeValuesError>>
fn write_next_to_request( &mut self, buf: &mut impl BufMut, ) -> Option<Result<(), SerializeValuesError>>
👎Deprecated since 0.15.1: Legacy serialization API is not type-safe and is going to be removed soon
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