use std::fmt;
pub struct PDFDocInfoEntry<'a> {
pub doc_info_entry: &'a str,
pub yaml_entry: &'a str,
}
impl<'a> fmt::Debug for PDFDocInfoEntry<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("PDFDocInfoEntry")
.field("doc_info_entry", &self.doc_info_entry)
.field("yaml_entry", &self.yaml_entry)
.finish()
}
}