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

The first element of the list.

The elements of the list after the first.

Required Associated Constants

Whether this type represents an empty list.

Implementations on Foreign Types

This isn’t really the first element of an empty list, but to fulfil the type constraint, we need something here.

Implementors