/// Document information extracted from PPT Document records.
////// Based on POI's Document and DocumentAtom record parsing.
/// Information extracted from a Document record.
#[derive(Debug, Clone, Default)]pubstructDocumentInfo{/// Slide width in EMUs (English Metric Units)
pubslide_width:u32,
/// Slide height in EMUs
pubslide_height:u32,
/// Number of slides in the presentation
pubslide_count:usize,
/// Number of notes slides
pubnotes_count:usize,
/// Number of master slides
pubmaster_count:usize,
/// Whether the document has an Environment record
pubhas_environment:bool,
/// Whether the document has a PPDrawingGroup record
pubhas_drawing_group:bool,
}