devela/data/codec/hash/
mod.rs

1// devela::data::codec::hash
2//
3//! Generic hashing support.
4//!
5#![doc = crate::doc_!(extends: hash)]
6//!
7#![cfg_attr(
8    any(not(feature = "hash"), not(feature = "cast")),
9    doc = "## Features\nTo compile the missing items, enable the `hash` and `cast` features."
10)]
11//
12
13mod fx; // HasherBuildFx, HasherFx (not feature-gated).
14mod reexports;
15
16#[cfg(feature = "hash")]
17crate::items! {
18    mod pengy; // hash_pengy
19
20    #[cfg(feature = "cast")]
21    mod fnv; // HasherBuildFnv, HasherFnv
22}
23
24crate::items! { // structural access: _mods, _all, _always
25    #[allow(unused)]
26    pub use _mods::*;
27    #[allow(unused)] #[doc(hidden, no_inline)]
28    pub use _always::*;
29
30    mod _mods {
31        pub use super::{fx::*, reexports::*};
32
33        #[cfg(feature = "hash")]
34        #[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "hash")))]
35        pub use super::pengy::*;
36
37        #[cfg(all(feature = "hash", feature = "cast"))]
38        #[cfg_attr(feature = "nightly_doc", doc(cfg(all(feature = "hash", feature = "cast"))))]
39        pub use super::fnv::*;
40    }
41    pub(super) mod _all {
42        #[doc(inline)]
43        pub use super::_mods::*;
44    }
45    pub(super) mod _always { #![allow(unused)]
46        pub use super::{fx::*, reexports::*};
47    }
48}