From a0d657f9b151512180b50e2eb291b320aa4a6947 Mon Sep 17 00:00:00 2001 From: Alexis Fontaine Date: Tue, 4 Nov 2025 13:42:38 +0000 Subject: [PATCH] chore: relax `Debug` trait bound on tuples `PossibleRouteMatch` implementation (#4428) --- router/src/matching/horizontal/tuples.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/router/src/matching/horizontal/tuples.rs b/router/src/matching/horizontal/tuples.rs index 0b17135f6..ea3971e87 100644 --- a/router/src/matching/horizontal/tuples.rs +++ b/router/src/matching/horizontal/tuples.rs @@ -4,7 +4,6 @@ macro_rules! tuples { ($first:ident => $($ty:ident),*) => { impl<$first, $($ty),*> PossibleRouteMatch for ($first, $($ty,)*) where - Self: core::fmt::Debug, $first: PossibleRouteMatch, $($ty: PossibleRouteMatch),*, {