[]Struct askama_rocket::shared::Syntax

pub struct Syntax<'a> {
    pub block_start: &'a str,
    pub block_end: &'a str,
    pub expr_start: &'a str,
    pub expr_end: &'a str,
    pub comment_start: &'a str,
    pub comment_end: &'a str,
}

Fields

block_start: &'a strblock_end: &'a strexpr_start: &'a strexpr_end: &'a strcomment_start: &'a strcomment_end: &'a str

Trait Implementations

impl<'a> Debug for Syntax<'a>

impl<'a> Default for Syntax<'a>

impl<'a> From<RawSyntax<'a>> for Syntax<'a>

Auto Trait Implementations

impl<'a> RefUnwindSafe for Syntax<'a>

impl<'a> Send for Syntax<'a>

impl<'a> Sync for Syntax<'a>

impl<'a> Unpin for Syntax<'a>

impl<'a> UnwindSafe for Syntax<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, I> AsResult<T, I> for T where
    I: Input, 

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoCollection<T> for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any