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