Enum minijinja::AutoEscape
source · #[non_exhaustive]
pub enum AutoEscape {
None,
Html,
Custom(&'static str),
}
Expand description
Controls the autoescaping behavior.
For more information see
set_auto_escape_callback
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
Do not apply auto escaping.
Html
Use HTML auto escaping rules.
Any value will be converted into a string and the following characters
will be escaped in ways compatible to XML and HTML: <
, >
, &
, "
,
'
, and /
.
Custom(&'static str)
A custom auto escape format.
The default formatter does not know how to deal with a custom escaping
format and would error. The use of these requires a custom formatter.
See set_formatter
.
Trait Implementations§
source§impl Clone for AutoEscape
impl Clone for AutoEscape
source§fn clone(&self) -> AutoEscape
fn clone(&self) -> AutoEscape
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AutoEscape
impl Debug for AutoEscape
source§impl PartialEq<AutoEscape> for AutoEscape
impl PartialEq<AutoEscape> for AutoEscape
source§fn eq(&self, other: &AutoEscape) -> bool
fn eq(&self, other: &AutoEscape) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.