pub struct Outline {
pub title: String,
pub uri: Option<String>,
pub page: Option<u32>,
pub down: Vec<Outline>,
pub x: f32,
pub y: f32,
}Expand description
a tree of the outline of a document (also known as table of contents).
Fields
title: Stringuri: Option<String>page: Option<u32>down: Vec<Outline>x: f32y: f32Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Outline
impl Send for Outline
impl Sync for Outline
impl Unpin for Outline
impl UnwindSafe for Outline
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more