minivec 0.4.0

A version of Vec that's only the size of a single pointer
Documentation
use crate::MiniVec;

impl<T: core::fmt::Debug> core::fmt::Debug for MiniVec<T> {
  fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
    let this: &[T] = &*self;

    this.fmt(f)
  }
}