pub struct KeyspaceIterator<'a>(/* private fields */);
Expand description
Iterator over the keyspaces in the schema.
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 KeyspaceIterator<'a>
impl<'a> Debug for KeyspaceIterator<'a>
Source§impl LendingIterator for KeyspaceIterator<'_>
impl LendingIterator for KeyspaceIterator<'_>
Source§type Item<'a> = KeyspaceMeta<'a>
where
Self: 'a
type Item<'a> = KeyspaceMeta<'a> where Self: 'a
The type of each item.
impl Send for KeyspaceIterator<'_>
impl Sync for KeyspaceIterator<'_>
Auto Trait Implementations§
impl<'a> Freeze for KeyspaceIterator<'a>
impl<'a> RefUnwindSafe for KeyspaceIterator<'a>
impl<'a> Unpin for KeyspaceIterator<'a>
impl<'a> UnwindSafe for KeyspaceIterator<'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