aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex/mod.rs
diff options
context:
space:
mode:
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 = ();