pub const fn is_unit<T: Tuple>() -> bool
Whether or not this tuple type is the empty tuple.
assert!(is_unit::<()>()); assert!(!is_unit::<(i32,)>());