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

Restricts what we can store in a StateMap (instead of just using Any)

Required methods

So we can downcast.

Implementors