use serde::Serialize; use super::render_context::RenderContext; use crate::error::CustomError; use crate::intermediate::IBabelCall; use super::macros::rnoop; #[derive(Debug, Serialize)] #[serde(tag = "type")] #[serde(rename = "babel_call")] pub(crate) struct RenderBabelCall { post_blank: organic::types::PostBlank, } rnoop!(RenderBabelCall, IBabelCall);