Struct maud::PreEscaped [] [src]

pub struct PreEscaped<T>(pub T);

A wrapper that renders the inner value without escaping.

Methods

impl PreEscaped<String>
[src]

Extracts the inner String. This is a synonym for self.0.

Trait Implementations

impl<T: Debug> Debug for PreEscaped<T>
[src]

Formats the value using the given formatter.

impl<T: Display> Render for PreEscaped<T>
[src]

Appends a representation of self to the given buffer. Read more

Renders self as a block of Markup.

impl Render for PreEscaped<String>
[src]

Appends a representation of self to the given buffer. Read more

Renders self as a block of Markup.

impl<'a> Render for PreEscaped<&'a str>
[src]

Appends a representation of self to the given buffer. Read more

Renders self as a block of Markup.