/// Types of links that HtmlRenderer collects while rendering #[derive(Debug, Copy, Clone, PartialEq, Eq)] pub enum LinkType { /// Ordinary HTML `...` link Href, /// HTML `` Img, /// HTML `` Embed, /// HTML `` Iframe, /// HTML `` Video, /// HTML `` Audio, // This enum has to be kept in sync with enum LinkType in include/htmlrenderer.h }