use-weather-front 0.1.0

Primitive weather front vocabulary for RustUse
Documentation
  • Coverage
  • 100%
    31 out of 31 items documented1 out of 7 items with examples
  • Size
  • Source code size: 11.23 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 759.38 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 4s Average build duration of successful builds.
  • all releases: 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-meteorology
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

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");