pub type OptionVecU8 = Option<Vec<u8>>;
enum OptionVecU8 { None, Some(Vec<u8>), }
No value.
Some value of type T.
T