use std::borrow::Cow;
use crate::models::meta::CustomMeta;
/// Contains additional information for the rendering process of a
/// [`MetaTypeVariant::Custom`](crate::models::meta::MetaTypeVariant::Custom)
/// type.
#[derive(Debug)]
pub struct CustomData<'types> {
/// Reference to the original type information.
pub meta: Cow<'types, CustomMeta>,
}