pub trait Plastic{
// Required methods
fn initial_yield_stress(&self) -> Scalar;
fn hardening_slope(&self) -> Scalar;
}Expand description
Required methods for plastic constitutive models.
Required Methods§
Sourcefn initial_yield_stress(&self) -> Scalar
fn initial_yield_stress(&self) -> Scalar
Returns the initial yield stress.
Sourcefn hardening_slope(&self) -> Scalar
fn hardening_slope(&self) -> Scalar
Returns the isotropic hardening slope.
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.