Trait abscissa_core::component::AsAny[][src]

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

Dynamic type helper trait

Required methods

Borrow this concrete type as a &dyn Any

Borrow this concrete type as a &mut dyn Any

Implementors