pub struct MaterialMechanicalModel {
pub youngs_modulus_pa: f64,
pub poisson_ratio: f64,
pub density_kg_per_m3: f64,
}Fields§
§youngs_modulus_pa: f64§poisson_ratio: f64§density_kg_per_m3: f64Trait Implementations§
Source§impl Clone for MaterialMechanicalModel
impl Clone for MaterialMechanicalModel
Source§fn clone(&self) -> MaterialMechanicalModel
fn clone(&self) -> MaterialMechanicalModel
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MaterialMechanicalModel
impl Debug for MaterialMechanicalModel
Source§impl<'de> Deserialize<'de> for MaterialMechanicalModel
impl<'de> Deserialize<'de> for MaterialMechanicalModel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MaterialMechanicalModel
impl PartialEq for MaterialMechanicalModel
Source§fn eq(&self, other: &MaterialMechanicalModel) -> bool
fn eq(&self, other: &MaterialMechanicalModel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MaterialMechanicalModel
impl Serialize for MaterialMechanicalModel
impl StructuralPartialEq for MaterialMechanicalModel
Auto Trait Implementations§
impl Freeze for MaterialMechanicalModel
impl RefUnwindSafe for MaterialMechanicalModel
impl Send for MaterialMechanicalModel
impl Sync for MaterialMechanicalModel
impl Unpin for MaterialMechanicalModel
impl UnsafeUnpin for MaterialMechanicalModel
impl UnwindSafe for MaterialMechanicalModel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more