useontologos_core::ParseMeta;/// Parse diagnostics accumulated during mapping.
#[derive(Debug, Default)]pubstructParseReport{/// Underlying metadata attached to the ontology.
pubmeta: ParseMeta,
}implParseReport{/// Create an empty report.
#[must_use]pubfnnew()->Self{Self::default()}/// Finalize metadata for attachment to an ontology.
#[must_use]pubfninto_meta(self)-> ParseMeta{self.meta
}}