We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9367a commit 1679c6fCopy full SHA for 1679c6f
src/re.rs
@@ -1,5 +1,5 @@
1
//! The required interface for an underlying regex engine
2
-use std::{fmt, io, ops::Range};
+use std::{io, ops::Range};
3
4
/// A [RegexEngine] is an underlying regular expression engine that can be used to match and
5
/// extract text as part of a structural regular expression.
@@ -55,7 +55,7 @@ where
55
}
56
57
/// Something that supports extracting a contiguous sub-section between two bytes offsets.
58
-pub trait Sliceable: Writable + fmt::Debug + PartialEq + Eq + Copy {
+pub trait Sliceable: Writable + Copy {
59
/// The output of the [slice][Sliceable::slice] method.
60
type Slice<'h>: Writable
61
where
0 commit comments