Type Alias serialimage::OptionVec

source ·
pub type OptionVec<T> = Option<Vec<T>>;
Expand description

Optional vector type alias.

Aliased Type§

enum OptionVec<T> {
    None,
    Some(Vec<T>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Vec<T>)

Some value of type T.