twine-models 0.4.0

Domain-specific models and model-building tools for Twine
Documentation
1
2
3
4
5
6
7
pub trait ThermoModel {
    type Fluid;
}

impl<T: ThermoModel> ThermoModel for &T {
    type Fluid = T::Fluid;
}