any_vec 0.15.0

Type erased vector. Most operations can be done without type knowledge. Mostly zero overhead.
Documentation
use core::alloc::Layout;
use crate::mem::{dangling, Mem, MemBuilder, MemRawParts};

/// Zero-size memory.
///
/// Contain only element Layout. This can be useful for constructing [`RawParts`] with zero overhead.
///
/// [`RawParts`]: crate::RawParts
#[derive(Default, Clone, Copy)]
pub struct Empty;
impl MemBuilder for Empty{
    /// Implements [`MemRawParts`].
    type Mem = EmptyMem;

    #[inline]
    fn build(&mut self, element_layout: Layout) -> Self::Mem {
        EmptyMem { element_layout }
    }
}

pub struct EmptyMem{
    element_layout: Layout
}

impl Mem for EmptyMem{
    #[inline]
    fn as_ptr(&self) -> *const u8 {
        dangling(&self.element_layout).as_ptr()
    }

    #[inline]
    fn as_mut_ptr(&mut self) -> *mut u8 {
        dangling(&self.element_layout).as_ptr()
    }

    #[inline]
    fn element_layout(&self) -> Layout {
        self.element_layout
    }

    #[inline]
    fn size(&self) -> usize {
        0
    }
}

impl MemRawParts for EmptyMem{
    type Handle = ();

    #[inline]
    fn into_raw_parts(self) -> (Self::Handle, Layout, usize) {
        ((), self.element_layout, 0)
    }

    /// `size` must be 0.
    #[inline]
    unsafe fn from_raw_parts(_: Self::Handle, element_layout: Layout, size: usize) -> Self {
        debug_assert!(size == 0);
        Self{
            element_layout
        }
    }
}