文件名称:rust_fit:用Rust编写的FIT文件解析器
文件大小:24KB
文件格式:ZIP
更新时间:2024-04-24 22:49:09
Rust
合身 用Rust编写的FIT文件解析器。 例子 extern crate fit; use std :: io :: BufReader; use std :: fs :: File; fn main () { let file = std :: fs :: File :: open ( "tests/20210218_zwift.fit" ). unwrap (); let mut reader = std :: io :: BufReader :: new (file); let fit = crate :: fit :: read ( & mut reader); } 当前状态 工作正在进行中。 修订记录 不适用 执照 该项目已获得。
【文件预览】:
rust_fit-main
----tests()
--------20210218_zwift.fit(43KB)
----LICENSE(1KB)
----src()
--------fit.rs(7KB)
--------lib.rs(2KB)
----Cargo.toml(304B)
----.gitignore(320B)
----README.md(446B)