pub trait BranchRefMut<'a, T> where
    T: Archive
{ fn leaf_mut(&mut self) -> &mut 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