From d39ed8fc77981f937c35fa84a7ff5d288d0c7181 Mon Sep 17 00:00:00 2001 From: Jonas Maier Date: Sat, 6 Jun 2026 13:45:54 +0200 Subject: clean up --- src/regex/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/regex/mod.rs') diff --git a/src/regex/mod.rs b/src/regex/mod.rs index 2c9f3d1..438361a 100644 --- a/src/regex/mod.rs +++ b/src/regex/mod.rs @@ -283,8 +283,9 @@ impl RegexEngine for CompiledPattern { macro_rules! all_engines { ($ty_name:ident, $($x:ident : $ty:ty,)*) => { + #[derive(Debug)] pub struct $ty_name { - $($x: Option<$ty>,)* + $(pub $x: Option<$ty>,)* } impl RegexEngine for $ty_name { type CompileError = (); -- cgit v1.2.3