use std::alloc::Layout;
use std::fmt::{Debug, Formatter};
use std::panic::RefUnwindSafe;
use std::sync::Arc;
mod alignment;
pub use alignment::ALIGNMENT;
pub trait Allocation: RefUnwindSafe + Send + Sync {}
impl<T: RefUnwindSafe + Send + Sync> Allocation for T {}
pub(crate) enum Deallocation {
Standard(Layout),
Custom(Arc<dyn Allocation>, usize),
}
impl Debug for Deallocation {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
match self {
Deallocation::Standard(layout) => {
write!(f, "Deallocation::Standard {layout:?}")
}
Deallocation::Custom(_, size) => {
write!(f, "Deallocation::Custom {{ capacity: {size} }}")
}
}
}
}
#[cfg(test)]
mod tests {
use crate::alloc::Deallocation;
#[test]
fn test_size_of_deallocation() {
assert_eq!(
std::mem::size_of::<Deallocation>(),
3 * std::mem::size_of::<usize>()
);
}
}