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