type Tree = Option<Box<Node>>;
enum Tree { None, Some(Box<Node>), }
No value.
Some value of type T.
T