metar 0.9.3

A fast METAR parsing library in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// The kind of METAR produced.
#[derive(PartialEq, Eq, Copy, Clone, Debug, Hash)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Kind {
    /// This is a regular METAR.
    Normal,
    /// This METAR was generated automatically without human oversight
    Automatic,
    /// This METAR corrects a previously issued METAR
    Correction,
}