pub trait Walk: Sized {
type Error;
// Required methods
fn leaf() -> Self;
fn internal(
children: &[&Self],
lookup: &KeyLookup,
) -> Result<Self, Self::Error>;
}
Expand description
Capability to be walked through a TreeKey
using traverse_all()
.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.