pub trait AsAny { // Required method fn as_any(&self) -> &dyn Any; }
Helper trait …
TODO(parkmycar): Document why this exists