conspire/constitutive/thermal/
mod.rs

1//! Thermal constitutive models.
2
3pub mod conduction;
4
5use std::fmt::Debug;
6
7/// Required methods for thermal constitutive models.
8pub trait Thermal
9where
10    Self: Clone + Debug,
11{
12}