pub trait Lookup<T: Descriptor + ?Sized> {
    fn by_name(&self, name: &str) -> Option<&'static T>;
}
Expand description

Used to look for a specific format.

Required Methods

Retrieves a specific format by name.

Implementations on Foreign Types

Implementors