devela_base_alloc 0.26.0

base alloc shared functionality for devela
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// devela_alloc::data::store::key::_reexport

use crate::{_reexport, _tags};

/* from `alloc` */

_reexport! { rust: alloc::collections, location: "data/id", tag: _tags!(data_structure),
    doc: "An ordered map based on a B-Tree.",
    BTreeMap
}
_reexport! { rust: alloc::collections::btree_map, location: "data/id",
    doc: "An entry of an ordered map based on a B-Tree.",
    @Entry as BTreeMapEntry
}
_reexport! { rust: alloc::collections, location: "data/id", tag: _tags!(data_structure),
    doc: "An ordered set based on a B-Tree.",
    BTreeSet
}