Diffstat (limited to 'src/walk/walkers/core/value.rs')
-rw-r--r--src/walk/walkers/core/value.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/walk/walkers/core/value.rs b/src/walk/walkers/core/value.rs
index ec5379d..69fb912 100644
--- a/src/walk/walkers/core/value.rs
+++ b/src/walk/walkers/core/value.rs
@@ -1,20 +1,17 @@
use effectful::{
bound::Dynamic,
- bound::IsSync,
effective::Effective,
environment::{DynBind, Environment, NativeForm},
SendSync,
};
use crate::{
- any::{
- BorrowedStatic, BorrowedStaticHrt, OwnedStatic, TempBorrowedStatic, TempBorrowedStaticHrt,
- },
- never::Never,
+ any::{BorrowedStatic, OwnedStatic, TempBorrowedStatic},
protocol::{
visitor::{visit_value, EffectiveVisitExt as _, VisitResult},
DynVisitor,
},
+ Never,
};
/// A very basic walker that uses the [`Value`][crate::protocol::visitor::value::Value] protocol.