pub trait HyperviscoelasticElement<C>where
C: Hyperviscoelastic,
Self: ElasticHyperviscousElement<C>,{
// Required method
fn helmholtz_free_energy(
&self,
constitutive_model: &C,
nodal_coordinates: &Self::Coordinates,
) -> Result<Quantity<Energy>, Self::Error>;
}Required Methods§
fn helmholtz_free_energy( &self, constitutive_model: &C, nodal_coordinates: &Self::Coordinates, ) -> Result<Quantity<Energy>, Self::Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".