Trait Minify
Source pub trait Minify {
// Required method
fn minify(&self) -> Result<Vec<u8>, Error>;
}
Expand description
Defines the minify trait.
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.