Struct html_minifier::HTMLMinifierHelper [−][src]
This struct helps you generate and minify your HTML code in the same time. The output destination is outside this struct.
Fields
remove_comments: boolRemove HTML comments.
minify_code: boolMinify the content in the code element.
Implementations
impl HTMLMinifierHelper[src]
impl HTMLMinifierHelper[src]
pub fn reset(&mut self)[src]
Reset this html minifier helper. The option settings and allocated memory will be be preserved.
pub fn digest<S: AsRef<[u8]>, W: HTMLWriter>(
&mut self,
text: S,
out: &mut W
) -> Result<(), HTMLMinifierError>[src]
&mut self,
text: S,
out: &mut W
) -> Result<(), HTMLMinifierError>
Input some text to generate HTML code. It is not necessary to input a full HTML text at once.
Trait Implementations
impl Clone for HTMLMinifierHelper[src]
fn clone(&self) -> HTMLMinifierHelper[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for HTMLMinifierHelper[src]
impl Default for HTMLMinifierHelper[src]
Auto Trait Implementations
impl RefUnwindSafe for HTMLMinifierHelper
impl Send for HTMLMinifierHelper
impl Sync for HTMLMinifierHelper
impl Unpin for HTMLMinifierHelper
impl UnwindSafe for HTMLMinifierHelper
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,