1
2
3
4
5
use core::fmt::Debug;
use downcast_rs::{impl_downcast, DowncastSync};

pub trait Reference: Debug + DowncastSync + Send + Sync {}
impl_downcast!(sync Reference);