pub struct Outline {
pub bookmarks: Vec<Bookmark>,
}Expand description
A document’s bookmark panel: an ordered forest of Bookmark nodes,
each linking to a page via an explicit /XYZ destination.
Fields§
§bookmarks: Vec<Bookmark>Top-level bookmarks, in reading order.
Trait Implementations§
impl StructuralPartialEq for Outline
Auto Trait Implementations§
impl Freeze for Outline
impl RefUnwindSafe for Outline
impl Send for Outline
impl Sync for Outline
impl Unpin for Outline
impl UnsafeUnpin for Outline
impl UnwindSafe for Outline
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more