
This is largely to make changing the type signature of these functions easier by significantly reducing the amount of places that duplicates the signature.
17 lines
320 B
Rust
17 lines
320 B
Rust
use std::path::Path;
|
|
|
|
use serde::Serialize;
|
|
|
|
use crate::config::Config;
|
|
use crate::error::CustomError;
|
|
use crate::intermediate::IVerbatim;
|
|
|
|
use super::macros::rnoop;
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(tag = "type")]
|
|
#[serde(rename = "verbatim")]
|
|
pub(crate) struct RenderVerbatim {}
|
|
|
|
rnoop!(RenderVerbatim, IVerbatim);
|