They would do that:
let (a, b, c): (A, B, C);
dbg!(a): A
(a): A
dbg!(a,): (A,)
(a,): (A,)
dbg!(a, b): (A, B)
(a, b): (A, B)
dbg!(a, b, c): (A, B, C)
(a, b, c): (A, B, C)
There is perfect symmetry here between (a, b, c) and dbg!(a, b, c).
Moreover, it is useful, and expected.
It was discussed; [1], [2], [3], [4], [5].
I think multiple arguments are a more common use case than needing to specify formatting is. Also, from what I can tell, this would stabilize the format to a degree, which was explicitly a non-goal of dbg! (and specified in the documentation).