Struct maud::PreEscaped [] [src]

pub struct PreEscaped<T: AsRef<str>>(pub T);

A wrapper that renders the inner value without escaping.

Methods

impl<T: AsRef<str> + Into<String>> PreEscaped<T>
[src]

Converts the inner value to a string.

Trait Implementations

impl<T: Debug + AsRef<str>> Debug for PreEscaped<T>
[src]

Formats the value using the given formatter.

impl<T: AsRef<str>> Render for PreEscaped<T>
[src]

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

Renders self as a block of Markup.

impl<T: AsRef<str> + Into<String>> Into<String> for PreEscaped<T>
[src]

Performs the conversion.