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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".