[][src]Struct html_minifier::HTMLMinifier

pub struct HTMLMinifier {
    pub remove_comments: 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.

Methods

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 in order to input a HTML text. The option settings will be maintained.

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

Input some text to generate HTML code. You don't need to input a full HTML text at once.

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

Generate HTML code into a String instance.

pub fn minify<S: AsRef<str>>(html: S) -> Result<String, &'static str>[src]

Minify HTML.

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.