pub trait Node<C = Ulid> {
// Required method
fn cursor(&self) -> C;
}Expand description
A node in a page, with a cursor
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".