1use std::path::PathBuf; 2 3#[derive(Debug, Clone, Default, PartialEq)] 4pub struct Figure { 5 pub caption: Option<String>, 6 pub image_path: Option<PathBuf>, 7}