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