natter/src/context/fixed_width_area.rs

15 lines
345 B
Rust
Raw Normal View History

2023-10-27 17:08:58 -04:00
use serde::Serialize;
use super::render_context::RenderContext;
2023-10-27 17:08:58 -04:00
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);