pub trait BranchRef<'a, T> where
    T: Archive
{ fn leaf(&self) -> MaybeArchived<'_, T>; }
Expand description

A trait for refering to a branch based solely on its leaf type

Required Methods

Provides a reference to the leaf of the branch

Implementors