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