diff options
| author | Jonas Maier <jonas@x77.dev> | 2026-06-06 13:45:54 +0200 |
|---|---|---|
| committer | Jonas Maier <jonas@x77.dev> | 2026-06-06 13:45:54 +0200 |
| commit | d39ed8fc77981f937c35fa84a7ff5d288d0c7181 (patch) | |
| tree | c17ba6e489a66e732853e9720eba4c16fa86d441 /src/regex/mod.rs | |
| parent | 1c0c0c35f3dff0abc8ac24ec90dedf554697cec5 (diff) | |
| download | pish-d39ed8fc77981f937c35fa84a7ff5d288d0c7181.tar.gz | |
clean up
Diffstat (limited to 'src/regex/mod.rs')
| -rw-r--r-- | src/regex/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
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 = (); |
