mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 11:04:40 -05:00
chore: relax Debug trait bound on tuples PossibleRouteMatch implementation (#4428)
This commit is contained in:
@@ -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),*,
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user