//! Rust implementation of a binary tree. //! //! Work in progress. //! //! TODOS:: //! - Understanding how complex borrows work //! - Apply correct value lifetime declarations //! - Make it efficient by implementing borrow //! - Removing requirement for `Copy` trait mod tree; pub use tree::{Tree, TreeNode}; #[cfg(test)] mod tests;