Skip to main content

RegularHibitTree

Trait RegularHibitTree 

Source
pub trait RegularHibitTree: HibitTree
where Self: for<'this> RegularHibitTreeTypes<'this>,
{ }
Expand description

HibitTree where all Data types are the same. Data = DataUnchecked = Cursor::Data.

Think of it as “the usual” HibitTree.

All containers and all “non-multi” operations results are RegularHibitTree.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> RegularHibitTree for T
where T: HibitTree + for<'this> RegularHibitTreeTypes<'this>,