// devela::sys::mem::alloc::storage::boxed
//
//! *Boxed* storage
//
use crate::;
use crate::;
// #[cfg(feature = "dep_rkyv")] // DEP_DISABLED
// use rkyv::{Archive, Deserialize, Serialize};
/// A zero-sized marker for a [`Storage`] type that wraps its data in a [`Box`].
///
/// Equivalent to the [`Bare`] marker struct which uses a [`BareBox`] for the underlying storage.
// #[cfg_attr(feature = "dep_rkyv", derive(Archive, Serialize, Deserialize))]
;
/// This implementation is equivalent to the one for [`Bare`] which uses [`BareBox`] for storage.