Plastic

Trait Plastic 

Source
pub trait Plastic
where Self: Clone + Debug,
{ // Required methods fn initial_yield_stress(&self) -> Scalar; fn hardening_slope(&self) -> Scalar; }
Expand description

Required methods for plastic constitutive models.

Required Methods§

Source

fn initial_yield_stress(&self) -> Scalar

Returns the initial yield stress.

Source

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.

Implementors§