pub struct TableIterator<'a>(/* private fields */);
Expand description
Iterator over the tables in a keyspace.
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> Debug for TableIterator<'a>
impl<'a> Debug for TableIterator<'a>
Source§impl LendingIterator for TableIterator<'_>
impl LendingIterator for TableIterator<'_>
impl Send for TableIterator<'_>
impl Sync for TableIterator<'_>
Auto Trait Implementations§
impl<'a> Freeze for TableIterator<'a>
impl<'a> RefUnwindSafe for TableIterator<'a>
impl<'a> Unpin for TableIterator<'a>
impl<'a> UnwindSafe for TableIterator<'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