pub trait NamedArguments<V: FormatArgument> {
    fn get(&self, key: &str) -> Option<&V>;
}
Expand description

A type that associates an argument with a name.

Required Methods

Returns a reference to the argument associated with the given name, if any.

Implementations on Foreign Types

Implementors