pub type TreeHandle = Option<Rc<RefCell<TreeNode>>>;
pub enum TreeHandle { None, Some(Rc<RefCell<TreeNode>>), }
No value.
Some value of type T.
T