pub trait PositionalArguments<'v, V>where
V: 'v + FormatArgument,{
type Iter: Iterator<Item = &'v V>;
// Required methods
fn get(&self, index: usize) -> Option<&V>;
fn iter(&'v self) -> Self::Iter;
}Expand description
A type that provides a list of arguments, randomly accessible by their position.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".