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.