#[derive(thiserror::Error, Debug)]
#[allow(missing_docs)]
pub enum Error {
#[error("Pack offsets must only increment. The previous pack offset was {last_pack_offset}, the current one is {pack_offset}")]
InvariantIncreasingPackOffset {
last_pack_offset: crate::data::Offset,
pack_offset: crate::data::Offset,
},
}
pub mod traverse;
pub mod from_offsets;
mod tree;
pub use tree::{Item, Tree};