bmi_rs/
lib.rs

1/// A
2/// [Basic Model Interface (BMI)](https://bmi.csdms.io/en/latest/index.html)
3/// _like_ trait and functionality to expose implementations over ffi via the
4/// [bmi-c interface](https://github.com/csdms/bmi-c).
5pub mod bmi;
6
7pub mod errors;
8
9mod wrapper;
10pub use crate::bmi::{
11    Bmi, BmiResult, GridType, Location, RefValues, ValueType, Values, register_model,
12};