xsd_parser/models/data/custom.rs
1use crate::models::meta::CustomMeta;
2
3/// Contains additional information for the rendering process of a
4/// [`MetaTypeVariant::Custom`](crate::models::meta::MetaTypeVariant::Custom)
5/// type.
6#[derive(Debug)]
7pub struct CustomData<'types> {
8 /// Reference to the original type information.
9 pub meta: &'types CustomMeta,
10}