[][src]Trait flag_algebra::report::Html

pub trait Html {
    const LATEX: bool;

    fn print_html<W: Write>(&self, w: &mut W) -> Result<()>;

    fn html(&self, name: &str) -> Result<()> { ... }
}

Associated Constants

const LATEX: bool

Loading content...

Required methods

fn print_html<W: Write>(&self, w: &mut W) -> Result<()>

Loading content...

Provided methods

fn html(&self, name: &str) -> Result<()>

True if Mathjax need to be loaded

Loading content...

Implementations on Foreign Types

impl<G: Draw, F, L, '_> Html for (&'_ [G], F) where
    F: FnMut(&G) -> L + Clone,
    L: Display
[src]

Loading content...

Implementors

impl<F> Html for Basis<F> where
    F: Flag + Draw
[src]

impl<F, N> Html for QFlag<N, F> where
    F: Flag + Draw,
    N: Num + Clone + Display + FromPrimitive
[src]

impl<F: Draw> Html for F[src]

impl<N, F> Html for Names<N, F> where
    F: Flag + Draw,
    N: Num + Clone + Display + FromPrimitive
[src]

Loading content...