Diffstat (limited to 'src/walk/walkers/core/bool.rs')
| -rw-r--r-- | src/walk/walkers/core/bool.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/walk/walkers/core/bool.rs b/src/walk/walkers/core/bool.rs index 5e173fa..03929e5 100644 --- a/src/walk/walkers/core/bool.rs +++ b/src/walk/walkers/core/bool.rs @@ -1,8 +1,8 @@ use crate::{effect::Effect, Walk, WalkerTypes}; -use super::value::{BorrowWalker, ValueWalker}; +use super::value::ValueWalker; -impl<'ctx, M, E: Effect<'ctx>> Walk<'ctx, M, E> for bool { +impl<'ctx, M, E: Effect> Walk<'ctx, M, E> for bool { type Walker = ValueWalker<bool>; fn into_walker(self) -> Self::Walker { @@ -15,7 +15,7 @@ impl WalkerTypes for bool { type Output = <ValueWalker<bool> as WalkerTypes>::Output; } -impl<'ctx, M, E: Effect<'ctx>> Walk<'ctx, M, E> for &'ctx bool { +impl<'ctx, M, E: Effect> Walk<'ctx, M, E> for &'ctx bool { type Walker = ValueWalker<bool>; fn into_walker(self) -> Self::Walker { |