pub trait SolidThermalwhere
Self: Multiphysics,{
type Solid: Solid;
type Thermal: Thermal;
// Required methods
fn solid_constitutive_model(&self) -> &Self::Solid;
fn thermal_constitutive_model(&self) -> &Self::Thermal;
}Expand description
Required methods for solid-thermal constitutive models.
Required Associated Types§
Required Methods§
Sourcefn solid_constitutive_model(&self) -> &Self::Solid
fn solid_constitutive_model(&self) -> &Self::Solid
Returns a reference to the solid constitutive model.
Sourcefn thermal_constitutive_model(&self) -> &Self::Thermal
fn thermal_constitutive_model(&self) -> &Self::Thermal
Returns a reference to the thermal constitutive model.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".