/// Slide information extracted from PPT Slide records.
////// Based on POI's Slide and SlideAtom record parsing.
/// Information extracted from a Slide record.
#[derive(Debug, Clone, Default)]pubstructSlideInfo{/// Layout ID (reference to master slide)
publayout_id:u32,
/// Master slide ID
pubmaster_id:u32,
/// Notes slide ID (0 if no notes)
pubnotes_id:u32,
/// Whether the slide has drawing data (PPDrawing record)
pubhas_drawing:bool,
/// Whether the slide has notes
pubhas_notes:bool,
}