Enum sherwood::SeekOptions [-] [+] [src]

pub enum SeekOptions {
    Higher,
    Lower,
}

Specifies behavior of iterator if requested key is not found

Variants

Higher

If seek key does not exist return the next sorted key higher than it

Lower

If seek key does not exist return the previous sorted key lower than it

Trait Implementations

Derived Implementations

impl Clone for SeekOptions

fn clone(&self) -> SeekOptions

fn clone_from(&mut self, source: &Self)

impl Copy for SeekOptions