1use core::any::Any; 2use crate::{DynMetadata, Pointee}; 3 4impl Pointee for dyn Any { 5 type Metadata = DynMetadata<dyn Any>; 6}