pub type Result<T> = Result<T, TreeError>;
A convenience type alias for the result of tree operations.
pub enum Result<T> { Ok(T), Err(TreeError), }
Contains the success value
Contains the error value