chore: relax Debug trait bound on tuples PossibleRouteMatch implementation (#4428)

This commit is contained in:
Alexis Fontaine
2025-11-04 13:42:38 +00:00
committed by GitHub
parent cddb24ebd3
commit a0d657f9b1

View File

@@ -4,7 +4,6 @@ macro_rules! tuples {
($first:ident => $($ty:ident),*) => { ($first:ident => $($ty:ident),*) => {
impl<$first, $($ty),*> PossibleRouteMatch for ($first, $($ty,)*) impl<$first, $($ty),*> PossibleRouteMatch for ($first, $($ty,)*)
where where
Self: core::fmt::Debug,
$first: PossibleRouteMatch, $first: PossibleRouteMatch,
$($ty: PossibleRouteMatch),*, $($ty: PossibleRouteMatch),*,
{ {