Skip to main content

SolidThermal

Trait SolidThermal 

Source
pub trait SolidThermal
where 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§

Source

type Solid: Solid

The solid constitutive model.

Source

type Thermal: Thermal

The thermal constitutive model.

Required Methods§

Source

fn solid_constitutive_model(&self) -> &Self::Solid

Returns a reference to the solid constitutive model.

Source

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".

Implementors§