[][src]Struct html_minifier::HTMLMinifier

pub struct HTMLMinifier { /* fields omitted */ }

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

Methods

impl HTMLMinifier[src]

pub fn new() -> HTMLMinifier[src]

Create a new HTMLMinifier instance.

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(self) -> String[src]

Finalize and 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 Debug for HTMLMinifier[src]

Auto Trait Implementations

Blanket Implementations

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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