pub trait AsAny: Any {
    fn as_any(&self) -> &dyn Any;
}
Expand description

A trait to work around not having trait object upcasting.

Required Methods

Implementors