Trait Node

Source
pub trait Node<C = Ulid> {
    // Required method
    fn cursor(&self) -> C;
}
Expand description

A node in a page, with a cursor

Required Methods§

Source

fn cursor(&self) -> C

The cursor of that particular node

Implementors§