pub trait Node {
// Required methods
fn new_parent(self, right: Self) -> Self;
fn new_parent_from_single(self) -> Self;
}
Expand description
A trait representing a node in a binary tree.
Required Methods§
sourcefn new_parent(self, right: Self) -> Self
fn new_parent(self, right: Self) -> Self
sourcefn new_parent_from_single(self) -> Self
fn new_parent_from_single(self) -> Self
Creates a new parent node from a single child node
§Return
The new parent node with the child node as self
Object Safety§
This trait is not object safe.