pub fn snprintf3<A, B, C>(
    dst: &mut [u8],
    fmt: PrintfFmt<(A, B, C)>,
    a: A,
    b: B,
    c: C
) -> c_intwhere
    A: PrintfArgument,
    B: PrintfArgument,
    C: PrintfArgument,
Available on crate feature example only.
Expand description

A safe wrapper around snprintf for 3 argument(s).