pub trait GetExtension {
    fn get_any(&self, t: TypeId) -> &dyn Any;
}
Expand description

A subset if the Extension trait that only allows for quering extensions.

Required methods

Get an extension of specific type.

Implementors