Struct minijinja::Syntax

source ·
pub struct Syntax {
    pub block_start: Cow<'static, str>,
    pub block_end: Cow<'static, str>,
    pub variable_start: Cow<'static, str>,
    pub variable_end: Cow<'static, str>,
    pub comment_start: Cow<'static, str>,
    pub comment_end: Cow<'static, str>,
}
Available on crate feature custom_syntax only.
Expand description

The delimiter configuration for the environment and the parser.

MiniJinja allows you to override the syntax configuration for templates by setting different delimiters. The end markers can be shared, but the start markers need to be distinct. It would thus not be valid to configure {{ to be the marker for both variables and blocks.

let mut environment = Environment::new();
environment.set_syntax(Syntax {
    block_start: "\\BLOCK{".into(),
    block_end: "}".into(),
    variable_start: "\\VAR{".into(),
    variable_end: "}".into(),
    comment_start: "\\#{".into(),
    comment_end: "}".into(),
}).unwrap();

Fields§

§block_start: Cow<'static, str>

The start of a block. By default it is {%.

§block_end: Cow<'static, str>

The end of a block. By default it is %}.

§variable_start: Cow<'static, str>

The start of a variable. By default it is {{.

§variable_end: Cow<'static, str>

The end of a variable. By default it is }}.

§comment_start: Cow<'static, str>

The start of a comment. By default it is {#.

§comment_end: Cow<'static, str>

The end of a comment. By default it is #}.

Trait Implementations§

source§

impl Clone for Syntax

source§

fn clone(&self) -> Syntax

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Syntax

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Syntax

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl PartialEq<Syntax> for Syntax

source§

fn eq(&self, other: &Syntax) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Syntax

source§

impl StructuralEq for Syntax

source§

impl StructuralPartialEq for Syntax

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.