[][src]Struct html_minifier::HTMLMinifier

pub struct HTMLMinifier {
    pub remove_comments: bool,
    pub minify_code: bool,
    // some fields omitted
}

This struct helps you generate and minify your HTML code in the same time.

Fields

remove_comments: bool

Remove HTML comments.

minify_code: bool

Minify the content in the code element.

Implementations

impl HTMLMinifier[src]

pub fn new() -> Self[src]

Returns the "default value" for a type.

impl HTMLMinifier[src]

pub fn reset(&mut self)[src]

Reset this html minifier. The option settings will be be preserved.

pub fn digest<S: AsRef<str>>(
    &mut self,
    text: S
) -> Result<(), HTMLMinifierError>
[src]

Input some text to generate HTML code. It is not necessary to input a full HTML text at once.

pub unsafe fn indigest<S: AsRef<str>>(&mut self, text: S)[src]

Directly input some text to generate HTML code. The text will just be appended to the output buffer.

Safety

This method won't check the HTML element boundary which means the states won't be changed even if the context is totally different.

You need to ensure by yourself that the text which is being inserted won't cause this HTMLMinifier to be broken.

When to Use This?

If the text has been minified, you can consider to use this method to get a better performance.

pub fn get_html(&mut self) -> &str[src]

Get HTML in a string slice.

Trait Implementations

impl Clone for HTMLMinifier[src]

impl Debug for HTMLMinifier[src]

impl Default for HTMLMinifier[src]

Auto Trait Implementations

Blanket Implementations

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

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.