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