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 18280fa commit 0fa35d4Copy full SHA for 0fa35d4
src/filters/network.rs
@@ -22,6 +22,7 @@ pub(crate) const TOKENS_BUFFER_SIZE: usize = 200;
22
/// For now, only support `$removeparam` with simple alphanumeric/dash/underscore patterns.
23
static VALID_PARAM: Lazy<Regex> = Lazy::new(|| Regex::new(r"^[a-zA-Z0-9_\-]+$").unwrap());
24
25
+#[non_exhaustive]
26
#[derive(Debug, Error, PartialEq, Clone)]
27
pub enum NetworkFilterError {
28
#[error("failed to parse filter")]
0 commit comments