pub fn printf7<A, B, C, D, E, F, G>(
    fmt: PrintfFmt<(A, B, C, D, E, F, G)>,
    a: A,
    b: B,
    c: C,
    d: D,
    e: E,
    f: F,
    g: G
) -> c_int where
    A: PrintfArgument,
    B: PrintfArgument,
    C: PrintfArgument,
    D: PrintfArgument,
    E: PrintfArgument,
    F: PrintfArgument,
    G: PrintfArgument
Available on crate feature example only.
Expand description

A safe wrapper around printf for 7 argument(s).