1
2
3
4
5
6
use core::any::Any;
use crate::{DynMetadata, Pointee};

impl Pointee for dyn Any {
    type Metadata = DynMetadata<dyn Any>;
}