1 2 3 4 5 6 7 8 9 10
/// a tree of the outline of a document (also known as table of contents). #[derive(Debug)] pub struct Outline { pub title: String, pub uri: Option<String>, pub page: Option<u32>, pub down: Vec<Outline>, pub x: f32, pub y: f32, }