pub trait NamedArguments<V: FormatArgument> {
// Required method
fn get(&self, key: &str) -> Option<&V>;
}Expand description
A type that associates an argument with a name.
pub trait NamedArguments<V: FormatArgument> {
// Required method
fn get(&self, key: &str) -> Option<&V>;
}A type that associates an argument with a name.