pub type OptionU16 = Option<u16>;
A type alias for Option<u16>.
Option<u16>
pub enum OptionU16 { None, Some(u16), }
No value.
Some value of type T.
T