pub trait Minify {
    fn minify(&self) -> Result<Vec<u8>, Error>;
}
Expand description

Defines the minify trait.

Required Methods

Minifies the source returning the minified HTML5.

Errors

Will return Err if unable to read from the input reader or unable to write to the output writer.

Implementors