aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askama_escape/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/askama_escape/src/lib.rs b/askama_escape/src/lib.rs
index 4a01485..2aa705e 100644
--- a/askama_escape/src/lib.rs
+++ b/askama_escape/src/lib.rs
@@ -7,6 +7,7 @@ extern crate std;
use core::fmt::{self, Display, Formatter, Write};
use core::str;
+#[derive(Debug)]
pub struct MarkupDisplay<E, T>
where
E: Escaper,
@@ -65,6 +66,7 @@ where
}
}
+#[derive(Debug)]
pub struct EscapeWriter<'a, E, W> {
fmt: W,
escaper: &'a E,
@@ -87,6 +89,7 @@ where
Escaped { string, escaper }
}
+#[derive(Debug)]
pub struct Escaped<'a, E>
where
E: Escaper,