use serde::Serialize; use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IPropertyDrawer; use super::macros::rnoop; #[derive(Debug, Serialize)] #[serde(tag = "type")] #[serde(rename = "property_drawer")] pub(crate) struct RenderPropertyDrawer {} rnoop!(RenderPropertyDrawer, IPropertyDrawer);