use std::path::Path; use serde::Serialize; use crate::config::Config; use crate::error::CustomError; use crate::intermediate::IExampleBlock; #[derive(Debug, Serialize)] #[serde(tag = "type")] #[serde(rename = "example_block")] pub(crate) struct RenderExampleBlock {} impl RenderExampleBlock { pub(crate) fn new, F: AsRef>( config: &Config, output_directory: D, output_file: F, original: &IExampleBlock, ) -> Result { Ok(RenderExampleBlock {}) } }