pub trait SolidThermal<'a, C1, C2>{
// Required methods
fn construct(
solid_constitutive_model: C1,
thermal_constitutive_model: C2,
) -> Self;
fn solid_constitutive_model(&self) -> &C1;
fn thermal_constitutive_model(&self) -> &C2;
}
Expand description
Required methods for solid-thermal constitutive models.
Required Methods§
Sourcefn construct(
solid_constitutive_model: C1,
thermal_constitutive_model: C2,
) -> Self
fn construct( solid_constitutive_model: C1, thermal_constitutive_model: C2, ) -> Self
Constructs and returns a new solid-thermal constitutive model.
Sourcefn solid_constitutive_model(&self) -> &C1
fn solid_constitutive_model(&self) -> &C1
Returns a reference to the solid constitutive model.
Sourcefn thermal_constitutive_model(&self) -> &C2
fn thermal_constitutive_model(&self) -> &C2
Returns a reference to the thermal constitutive model.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.