pub struct LineageFold {
pub children: BTreeMap<Token, Vec<Token>>,
}Expand description
The delegation forest: parent → children, from Minted records
(doc 06 §4 — coordination trace, attribution roll-up, cascade path).
Fields§
§children: BTreeMap<Token, Vec<Token>>Parent token → children in mint order.
Trait Implementations§
Source§impl Debug for LineageFold
impl Debug for LineageFold
Source§impl Default for LineageFold
impl Default for LineageFold
Source§fn default() -> LineageFold
fn default() -> LineageFold
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LineageFold
impl RefUnwindSafe for LineageFold
impl Send for LineageFold
impl Sync for LineageFold
impl Unpin for LineageFold
impl UnsafeUnpin for LineageFold
impl UnwindSafe for LineageFold
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