25 个版本
0.6.18 | 2023年11月27日 |
---|---|
0.6.15 | 2023年6月14日 |
0.6.4 | 2022年8月12日 |
0.5.6 | 2022年8月6日 |
0.4.1 | 2021年2月22日 |
#150 in 地理空间
每月 215 次下载
用于 opening-hours
48KB
1K SLoC
Rust 解析器,用于 OSM 开放时间
opening-hours crate 的解析组件。
用法
将此添加到您的 Cargo.toml
[dependencies]
opening-hours-syntax = "0"
然后基本用法如下所示
use opening_hours_syntax::parse;
// Opens until 18pm during the week and until 12am the week-end.
const OH: &str = "Mo-Fr 10:00-18:00; Sa-Su 10:00-12:00";
fn main() {
let oh = parse(&OH).unwrap();
eprintln!("{:?}", oh);
}
"Root Package"
"Package"
"Documentation"
lib.rs
:
opening-hours crate 的解析组件。
用法
将此添加到您的 Cargo.toml
[dependencies]
opening-hours-syntax = "0"
然后基本用法如下所示
use opening_hours_syntax::parse;
// Opens until 18pm during the week and until 12am the week-end.
const OH: &str = "Mo-Fr 10:00-18:00; Sa-Su 10:00-12:00";
fn main() {
let oh = parse(&OH).unwrap();
eprintln!("{:?}", oh);
}
依赖项
~4MB
~76K SLoC