get-size2 0.11.0

Determine the size in bytes an object occupies inside RAM.
Documentation
1
2
3
4
5
6
7
8
9
// The implementations are grouped by the crate which provides the implemented types, so that a
// `no_std` build can simply drop the `alloc` and `std` tiers.
mod core_impls;
mod feature;

#[cfg(feature = "alloc")]
mod alloc_impls;
#[cfg(feature = "std")]
mod std_impls;