pub trait PlanarSolidFiniteElement<const G: usize, const N: usize, const P: usize>where
Self: FiniteElement<G, M, N, P>,{
// Required method
fn deformation_gradients(
&self,
nodal_coordinates: &PlanarElementNodalCoordinates<N>,
) -> DeformationGradientList<G>;
}Required Methods§
fn deformation_gradients( &self, nodal_coordinates: &PlanarElementNodalCoordinates<N>, ) -> DeformationGradientList<G>
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.