devela/data/layout/array/
mod.rs1#![doc = crate::_DOC_DATA_LAYOUT_ARRAY!()] #![doc = crate::_doc!(modules: crate::data::layout; array)]
5#![doc = crate::_doc!(flat:"data")]
6#![doc = crate::_doc!(extends: array, vec)]
7mod _reexport_core;
12
13mod adt; mod d1; mod d2; mod ext; mod from; mod init; #[cfg(feature = "alloc")]
21#[cfg_attr(nightly_doc, doc(cfg(feature = "alloc")))]
22mod vec;
23
24crate::structural_mods! { _mods {
26 pub use super::{
27 adt::*,
28 d1::_all::*,
29 d2::_all::*,
30 ext::*,
31 from::*,
32 init::*,
33 };
34
35 #[cfg(feature = "alloc")]
36 pub use super::vec::_all::*;
37 }
38 _reexports {
39 pub use super::_reexport_core::*;
40 }
41}