Trait ErasedDestructor
trait ErasedDestructor: 'static
Dummy trait that lets us dyn Drop
dyn Drop isn't legal (and doesn't make sense since Drop is not
implement on all destructible types). However, all trait objects come with
a destructor, so we can just use an empty trait to get a destructor object.
Implementors
impl<T> ErasedDestructor for EitherCart<C0, C1>impl<T> ErasedDestructor for Yoke<Y, C>impl<T> ErasedDestructor for CartableOptionPointer<C>impl<T: 'static> ErasedDestructor for T