pub struct SetIterator<'a>(/* private fields */);
Expand description
Iterator over the values in a set.
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.
Trait Implementations§
Source§impl<'a> AsRustType<SetIterator<'a>> for Row<'a>
impl<'a> AsRustType<SetIterator<'a>> for Row<'a>
Source§fn get_by_name<S>(&self, name: S) -> Result<SetIterator<'a>>
fn get_by_name<S>(&self, name: S) -> Result<SetIterator<'a>>
Convert Cassandra column by name.
Source§impl<'a> Debug for SetIterator<'a>
impl<'a> Debug for SetIterator<'a>
Source§impl Drop for SetIterator<'_>
impl Drop for SetIterator<'_>
Source§impl LendingIterator for SetIterator<'_>
impl LendingIterator for SetIterator<'_>
impl Send for SetIterator<'_>
impl Sync for SetIterator<'_>
Auto Trait Implementations§
impl<'a> Freeze for SetIterator<'a>
impl<'a> RefUnwindSafe for SetIterator<'a>
impl<'a> Unpin for SetIterator<'a>
impl<'a> UnwindSafe for SetIterator<'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