Function check_vec_is_missing

Source
pub fn check_vec_is_missing<T, const SIZE: usize>(
    v: Vec<T, SIZE>,
) -> Result<Vec<T, SIZE>, Error>
Expand description

Check if the Vec is empty and return an error Error::InvalidArgument if true.