[][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.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.