1use core::fmt::Debug; 2use downcast_rs::{impl_downcast, DowncastSync}; 3 4pub trait Reference: Debug + DowncastSync + Send + Sync {} 5impl_downcast!(sync Reference);