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