summaryrefslogtreecommitdiffstats
path: root/vendor/zerovec/src/map/mod.rs
blob: fcad0cff71ddb2034b5682c4343c24fe3128d087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

//! See [`ZeroMap`](crate::ZeroMap) for details.

mod borrowed;
mod kv;
#[allow(clippy::module_inception)] // module is purely internal
pub(crate) mod map;
mod vecs;

#[cfg(feature = "databake")]
mod databake;
#[cfg(feature = "serde")]
mod serde;
#[cfg(feature = "serde")]
mod serde_helpers;

pub use crate::ZeroMap;
pub use borrowed::ZeroMapBorrowed;
pub use kv::ZeroMapKV;
pub use vecs::{MutableZeroVecLike, ZeroVecLike};