pub type ViewMap<TYPES> = BTreeMap<<TYPES as NodeType>::Time, BTreeMap<usize, Leaf<TYPES>>>;

Aliased Type§

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

Fields§

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