pub struct OutlineEntry {
pub level: i64,
pub text: String,
pub dest_name: String,
pub is_open: bool,
}Expand description
One outline entry (upstream Outline: (level, text, key, isopen) with
the key already resolved to a /Dests name via NamedDest.get).
Fields§
§level: i64§text: String§dest_name: String§is_open: boolTrait Implementations§
Source§impl Clone for OutlineEntry
impl Clone for OutlineEntry
Source§fn clone(&self) -> OutlineEntry
fn clone(&self) -> OutlineEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OutlineEntry
impl Debug for OutlineEntry
Source§impl PartialEq for OutlineEntry
impl PartialEq for OutlineEntry
impl StructuralPartialEq for OutlineEntry
Auto Trait Implementations§
impl Freeze for OutlineEntry
impl RefUnwindSafe for OutlineEntry
impl Send for OutlineEntry
impl Sync for OutlineEntry
impl Unpin for OutlineEntry
impl UnsafeUnpin for OutlineEntry
impl UnwindSafe for OutlineEntry
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