Trait printf_wrap::PrintfArgsList
source · [−]pub trait PrintfArgsList {
type First: PrintfArgument;
type Rest: PrintfArgsList;
const IS_EMPTY: bool;
}Expand description
A PrintfArgs in a form more amenable to recursive processing.
Required Associated Types
sourcetype First: PrintfArgument
type First: PrintfArgument
The first element of the list.
sourcetype Rest: PrintfArgsList
type Rest: PrintfArgsList
The elements of the list after the first.