pub trait PrintfArgs {
type AsList: PrintfArgsList;
}
Expand description
A list of Rust-side arguments to a printf(3)
-style function.
Required Associated Types§
Sourcetype AsList: PrintfArgsList
type AsList: PrintfArgsList
The PrintfArgsList
equivalent to Self
.