rustyfit 0.6.0

This project hosts the Rust implementation for The Flexible and Interoperable Data Transfer (FIT) Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use profile_type::{PROFILE_VERSION, ProfileType};

/// The `lookup` module provide a lookup function to find message representation
/// defined in the Profile.xslx.
pub mod lookup;

/// The `mesgdef` module contains all message structures that can be used as
/// intermediate representation to work with FIT message for convenience.
pub mod mesgdef;

/// The `typedef` module contains all types to work with FIT protocol representation
/// as well as to work with `mesgdef` module.
pub mod typedef;

mod profile_type;