OptionVecU8

Type Alias OptionVecU8 

Source
pub type OptionVecU8 = Option<Vec<u8>>;
Expand description

A type alias for Option<Vec<u8>>.

Aliased Type§

pub enum OptionVecU8 {
    None,
    Some(Vec<u8>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Vec<u8>)

Some value of type T.