pub struct MapIterator<'a>(/* private fields */);
Expand description
An iterator over the k/v pairs in a map.
A Cassandra iterator is a LendingIterator
because it borrows from some
underlying value, but owns a single item. Each time next()
is invoked it
decodes the current item into that item, thus invalidating its previous
value.
Implementations§
Trait Implementations§
Source§impl<'a> AsRustType<MapIterator<'a>> for Row<'a>
impl<'a> AsRustType<MapIterator<'a>> for Row<'a>
Source§fn get_by_name<S>(&self, name: S) -> Result<MapIterator<'a>>
fn get_by_name<S>(&self, name: S) -> Result<MapIterator<'a>>
Convert Cassandra column by name.
Source§impl<'a> Debug for MapIterator<'a>
impl<'a> Debug for MapIterator<'a>
Source§impl Drop for MapIterator<'_>
impl Drop for MapIterator<'_>
Source§impl LendingIterator for MapIterator<'_>
impl LendingIterator for MapIterator<'_>
impl Send for MapIterator<'_>
impl Sync for MapIterator<'_>
Auto Trait Implementations§
impl<'a> Freeze for MapIterator<'a>
impl<'a> RefUnwindSafe for MapIterator<'a>
impl<'a> Unpin for MapIterator<'a>
impl<'a> UnwindSafe for MapIterator<'a>
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