Diffstat (limited to 'tests/common/walker.rs')
| -rw-r--r-- | tests/common/walker.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/common/walker.rs b/tests/common/walker.rs index 5ba0ef8..abe7256 100644 --- a/tests/common/walker.rs +++ b/tests/common/walker.rs @@ -15,13 +15,15 @@ mock! { } } -impl<Output: Send + Sync, Error: Send + Sync> WalkerTypes for MockWalker<Output, Error> { +impl<Output: Send + Sync, Error: Send + Sync + core::fmt::Debug> WalkerTypes + for MockWalker<Output, Error> +{ type Error = Error; type Output = Output; } -impl<'ctx, Output: Send + Sync, Error: Send + Sync, E: Effect> Walker<'ctx, E> +impl<'ctx, Output: Send + Sync, Error: Send + Sync + core::fmt::Debug, E: Effect> Walker<'ctx, E> for MockWalker<Output, Error> { fn walk<'a: 'c, 'c>( |