pub trait Get<Target, Path> {
// Required methods
fn get(&self) -> &Target;
fn get_mut(&mut self) -> &mut Target;
}Expand description
Getter trait for type level binary tree node. This requires that the target requirement exists in the tree.