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