pub trait HyperviscoelasticElements<const D: usize>where
Self: ElasticHyperviscousElements<D>,{
// Required method
fn helmholtz_free_energy(
&self,
nodal_coordinates: &NodalCoordinates<D>,
) -> Result<Quantity<Energy>, ElementModelError>;
}Required Methods§
fn helmholtz_free_energy( &self, nodal_coordinates: &NodalCoordinates<D>, ) -> Result<Quantity<Energy>, ElementModelError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".