Skip to main content

OutlineNode

Struct OutlineNode 

Source
pub struct OutlineNode {
    pub path: String,
    pub label: Option<String>,
    pub children: Vec<OutlineNode>,
}
Expand description

One node of a site’s spanning outline: the archive’s own containment hierarchy, materialized by whoever holds the workspace.

A vault’s spine is configured, not spelled: prov’s spanning: names the relation whose links contain, and contents:/part_of: is one vault dialect’s spelling of it. This crate cannot read a workspace’s configuration — it reads nothing — so the layer that can walks the tree and hands the result down as plain data. See SiteOptions::outline.

path is the source path in the coordinates SourceDoc::path is written in: rebased onto the site’s anchor, sanitized, carrying the body’s own extension. That is what lets a node be matched to the page it became without either side re-deriving the other’s naming rule.

A node naming a document this site does not publish is not an error and not a nav entry — it is pruned, and its published descendants hoist to the nearest ancestor that is published. Under explicit-only visibility that is the ordinary shape, not the edge case.

Fields§

§path: String

The source path this node names, spelled as SourceDoc::path spells it.

§label: Option<String>

The label the containing document’s link carried ([Label](path)), when it carried one. A fallback only: a page’s own nav_title/title wins.

§children: Vec<OutlineNode>

Contained nodes, in the order the containing document declared them.

Trait Implementations§

Source§

impl Clone for OutlineNode

Source§

fn clone(&self) -> OutlineNode

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for OutlineNode

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for OutlineNode

Source§

fn default() -> OutlineNode

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.