summaryrefslogtreecommitdiff
path: root/src/iterator/guard.rs
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2026-03-14 21:33:50 -0400
committerMica White <botahamec@outlook.com>2026-03-14 21:33:50 -0400
commit482b47f4ed786946acb324b60d9f7ae7dd8cc075 (patch)
tree4216f042597679f2b76adbb61d3ba9596e96a060 /src/iterator/guard.rs
parentd9095d8fce59714f75019ecf68911d9931a1af15 (diff)
Apply clippy restrictionsHEADmain
Diffstat (limited to 'src/iterator/guard.rs')
-rw-r--r--src/iterator/guard.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iterator/guard.rs b/src/iterator/guard.rs
index 6393fc2..cb220ac 100644
--- a/src/iterator/guard.rs
+++ b/src/iterator/guard.rs
@@ -2,7 +2,7 @@ use std::fmt::{Debug, Display};
use std::hash::Hash;
use std::ops::{Deref, DerefMut};
-use super::{ConsumedIteratorGuard, IteratorGuard};
+use super::IteratorGuard;
#[mutants::skip] // hashing involves RNG and is hard to test
#[cfg(not(tarpaulin_include))]