#![doc = crate::doc_miri_warn!(tag)]
#![doc = crate::doc_miri_warn!(body,
url: "https://github.com/thepowersgang/stack_dst-rs/issues/14")]
#![doc = include_str!("./Mod.md")]
#![doc = include_str!("./MODIFICATIONS.md")]
#![allow(clippy::result_unit_err)] mod helpers;
#[cfg(test)]
mod tests;
mod buffer;
mod queue;
mod stack;
mod value;
crate::items! { #[allow(unused)]
pub use {_mods::*, _internals::*} ;
mod _mods {
pub use super::{buffer::*, queue::*, stack::*, value::*};
}
pub(super) mod _all {
#[doc(inline)]
pub use super::_mods::*;
}
mod _internals {
pub(super) use super::helpers::{
check_fat_pointer, decompose_pointer, list_push_gen, make_fat_ptr,
round_to_words, store_metadata,
};
}
}