natter/src/context/fixed_width_area.rs

17 lines
389 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")]
2023-12-21 14:56:58 -05:00
pub(crate) struct RenderFixedWidthArea {
post_blank: organic::types::PostBlank,
}
2023-10-27 17:08:58 -04:00
rnoop!(RenderFixedWidthArea, IFixedWidthArea);