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