grib/decoder/complex/
missing.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use num::ToPrimitive;

use self::DecodedValue::{Missing1, Missing2, Normal};

#[derive(Debug, Clone, PartialEq)]
pub(crate) enum DecodedValue<N: ToPrimitive> {
    Normal(N),
    Missing1,
    Missing2,
}

impl<N: ToPrimitive> ToPrimitive for DecodedValue<N> {
    fn to_i64(&self) -> Option<i64> {
        match self {
            Normal(v) => v.to_i64(),
            Missing1 => None,
            Missing2 => None,
        }
    }

    fn to_u64(&self) -> Option<u64> {
        match self {
            Normal(v) => v.to_u64(),
            Missing1 => None,
            Missing2 => None,
        }
    }

    fn to_f32(&self) -> Option<f32> {
        match self {
            Normal(v) => v.to_f32(),
            Missing1 => Some(f32::NAN),
            Missing2 => Some(f32::NAN),
        }
    }

    fn to_f64(&self) -> Option<f64> {
        match self {
            Normal(v) => v.to_f64(),
            Missing1 => Some(f64::NAN),
            Missing2 => Some(f64::NAN),
        }
    }
}