Trait BackendRoCursor

Source
pub trait BackendRoCursor<'c>: Debug {
    type Iter: BackendIter<'c>;

    // Required methods
    fn into_iter(self) -> Self::Iter;
    fn into_iter_from<K>(self, key: K) -> Self::Iter
       where K: AsRef<[u8]> + 'c;
    fn into_iter_dup_of<K>(self, key: K) -> Self::Iter
       where K: AsRef<[u8]> + 'c;
}

Required Associated Types§

Required Methods§

Source

fn into_iter(self) -> Self::Iter

Source

fn into_iter_from<K>(self, key: K) -> Self::Iter
where K: AsRef<[u8]> + 'c,

Source

fn into_iter_dup_of<K>(self, key: K) -> Self::Iter
where K: AsRef<[u8]> + 'c,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§