pub trait Next {
    // Required method
    fn next(&mut self);
}

Required Methods§

source

fn next(&mut self)

| Moves to the next entry in the source. After | this call, Valid() is true iff the iterator | was not positioned at the last entry in the | source. | | REQUIRES: Valid()

Implementors§