aboutsummaryrefslogtreecommitdiffstats
path: root/askama_parser/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--askama_parser/src/lib.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/askama_parser/src/lib.rs b/askama_parser/src/lib.rs
index e7c387b..bebf020 100644
--- a/askama_parser/src/lib.rs
+++ b/askama_parser/src/lib.rs
@@ -48,17 +48,6 @@ impl<'a> State<'a> {
}
}
-impl From<char> for Whitespace {
- fn from(c: char) -> Self {
- match c {
- '+' => Self::Preserve,
- '-' => Self::Suppress,
- '~' => Self::Minimize,
- _ => panic!("unsupported `Whitespace` conversion"),
- }
- }
-}
-
mod _parsed {
use std::mem;