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

A convenience super-trait for Freezeable things that can be downcast to concrete types.

Required Methods

Gives &dyn Any to enable downcasting.

Implementors