pub type NodeMapSanitized<TYPES> = BTreeMap<<TYPES as NodeType>::Time, Leaf<TYPES>>;
Expand description

A sanitized map from views to leaves for a single node, with only a single leaf per view.

Aliased Type§

struct NodeMapSanitized<TYPES> {
    root: Option<NodeRef<Owned, <TYPES as NodeType>::Time, Leaf<TYPES>, LeafOrInternal>>,
    length: usize,
    pub(super) alloc: ManuallyDrop<Global>,
    _marker: PhantomData<Box<(<TYPES as NodeType>::Time, Leaf<TYPES>)>>,
}

Fields§

§root: Option<NodeRef<Owned, <TYPES as NodeType>::Time, Leaf<TYPES>, LeafOrInternal>>§length: usize§alloc: ManuallyDrop<Global>§_marker: PhantomData<Box<(<TYPES as NodeType>::Time, Leaf<TYPES>)>>