tidepool-bridge 0.1.0

Bridge between Rust types and Tidepool Core values
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Bidirectional conversion between Rust types and Tidepool Core values.
//!
//! Defines `FromCore` and `ToCore` traits with derive macros for automatic
//! marshalling across the Haskell-Rust boundary.

pub mod error;
pub mod impls;
pub mod json;
pub mod traits;

pub use error::*;
pub use traits::*;