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

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