use-weather-front 0.1.0

Primitive weather front vocabulary for RustUse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# use-weather-front

Primitive weather front vocabulary.

`use-weather-front` models front kinds, movement labels, and strength labels. It does not model front geometry, front position, or front forecast logic.

```rust
use use_weather_front::{FrontMovement, FrontStrength, WeatherFrontKind};

assert_eq!(WeatherFrontKind::Cold.to_string(), "cold");
assert_eq!(FrontMovement::Advancing.to_string(), "advancing");
assert_eq!(FrontStrength::Strong.to_string(), "strong");
```