aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex/mod.rs
diff options
context:
space:
mode:
authorJonas Maier <jonas@x77.dev>2026-06-06 13:45:54 +0200
committerJonas Maier <jonas@x77.dev>2026-06-06 13:45:54 +0200
commitd39ed8fc77981f937c35fa84a7ff5d288d0c7181 (patch)
treec17ba6e489a66e732853e9720eba4c16fa86d441 /src/regex/mod.rs
parent1c0c0c35f3dff0abc8ac24ec90dedf554697cec5 (diff)
downloadpish-d39ed8fc77981f937c35fa84a7ff5d288d0c7181.tar.gz
clean up
Diffstat (limited to 'src/regex/mod.rs')
-rw-r--r--src/regex/mod.rs3
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 = ();