Expand description
§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.
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");Enums§
- Front
Movement - Stable weather-front movement vocabulary.
- Front
Movement Parse Error - Error returned when parsing front movement fails.
- Front
Strength - Stable weather-front strength vocabulary.
- Front
Strength Parse Error - Error returned when parsing front strength fails.
- Weather
Front Kind - Stable weather-front kind vocabulary.
- Weather
Front Kind Parse Error - Error returned when parsing weather-front kinds fails.