RenderOutputExt

Trait RenderOutputExt 

Source
pub trait RenderOutputExt<'s>: RenderOutput<'s> {
    // Provided method
    fn render_into_document(
        self,
        input: &'s str,
    ) -> Result<Self::Output, <Self as Render<'s>>::Error>
       where Self: Sized { ... }
}
Expand description

Utility extension method for RenderOutput trait

Provided Methods§

Source

fn render_into_document( self, input: &'s str, ) -> Result<Self::Output, <Self as Render<'s>>::Error>
where Self: Sized,

Implementors§

Source§

impl<'s, R> RenderOutputExt<'s> for R
where R: RenderOutput<'s>,