pub struct Walk {
pub census: Vec<CensusEntry>,
pub facts: Vec<StructuralFact>,
pub content_bodies: Vec<PathBuf>,
}Expand description
The result of one spanning-tree
walk: the forward-link census,
the structural facts observed from traversal state, and the prose body
files reached through separated nodes’ content pointers (tracked for
the orphan check, deliberately absent from the census).
Fields§
§census: Vec<CensusEntry>§facts: Vec<StructuralFact>§content_bodies: Vec<PathBuf>Auto Trait Implementations§
impl Freeze for Walk
impl RefUnwindSafe for Walk
impl Send for Walk
impl Sync for Walk
impl Unpin for Walk
impl UnsafeUnpin for Walk
impl UnwindSafe for Walk
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