Docs.rs
  • html-site-generator-0.0.1
    • html-site-generator 0.0.1
    • Docs.rs crate page
    • Apache-2.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • LetsMelon
    • Dependencies
      • anyhow ^1.0.71 normal
      • chrono ^0.4.26 normal
      • derive_builder ^0.12.0 normal
      • html-site-generator-macro ^0.0.1 normal
    • Versions
    • 31.46% of the crate is documented
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

html_site_generator0.0.1

IntoHtmlNode

Required Methods

  • transform_into_html_node

Implementors

In html_site_generator::html

html_site_generator::html

Trait IntoHtmlNode

Source
pub trait IntoHtmlNode: Debug {
    // Required method
    fn transform_into_html_node(&self, buffer: &mut dyn Write) -> Result<()>;
}

Required Methods§

Source

fn transform_into_html_node(&self, buffer: &mut dyn Write) -> Result<()>

Implementors§

Source§

impl IntoHtmlNode for HtmlAttributes

Source§

impl IntoHtmlNode for Address

Source§

impl IntoHtmlNode for Body

Source§

impl IntoHtmlNode for Div

Source§

impl IntoHtmlNode for Document

Source§

impl IntoHtmlNode for Footer

Source§

impl IntoHtmlNode for Head

Source§

impl IntoHtmlNode for Hyperlink

Source§

impl IntoHtmlNode for Image

Source§

impl IntoHtmlNode for LineBreak

Source§

impl IntoHtmlNode for Link

Source§

impl IntoHtmlNode for List

Source§

impl IntoHtmlNode for Meta

Source§

impl IntoHtmlNode for Paragraph

Source§

impl IntoHtmlNode for Title

Source§

impl<S: AsRef<str> + Debug> IntoHtmlNode for S