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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".