pub trait SeekToLast {
    // Required method
    fn seek_to_last(&mut self);
}

Required Methods§

source

fn seek_to_last(&mut self)

| Position at the last key in the source. | The iterator is Valid() after this call | iff the source is not empty. |

Implementors§