bmi-rs 0.0.1-alpha.0

Library for exposing numerical models over the CSDMS Basic Model Interface (BMI).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// A
/// [Basic Model Interface (BMI)](https://bmi.csdms.io/en/latest/index.html)
/// _like_ trait and functionality to expose implementations over ffi via the
/// [bmi-c interface](https://github.com/csdms/bmi-c).
pub mod bmi;

pub mod errors;

mod wrapper;
pub use crate::bmi::{
    Bmi, BmiResult, GridType, Location, RefValues, ValueType, Values, register_model,
};