natter/src/context/fixed_width_area.rs

17 lines
352 B
Rust
Raw Normal View History

2023-10-27 17:08:58 -04:00
use std::path::Path;
use serde::Serialize;
use crate::config::Config;
use crate::error::CustomError;
use crate::intermediate::IFixedWidthArea;
use super::macros::rnoop;
2023-10-27 17:08:58 -04:00
#[derive(Debug, Serialize)]
#[serde(tag = "type")]
#[serde(rename = "fixed_width_area")]
pub(crate) struct RenderFixedWidthArea {}
rnoop!(RenderFixedWidthArea, IFixedWidthArea);