pub fn printf5<A, B, C, D, E>(
fmt: PrintfFmt<(A, B, C, D, E)>,
a: A,
b: B,
c: C,
d: D,
e: E,
) -> c_intwhere
A: PrintfArgument,
B: PrintfArgument,
C: PrintfArgument,
D: PrintfArgument,
E: PrintfArgument,Available on crate feature
example only.Expand description
A safe wrapper around printf for 5 argument(s).