pub struct StrainAllowables {
pub eps1t: f64,
pub eps1c: f64,
pub eps2t: f64,
pub eps2c: f64,
pub gamma12_max: f64,
}Expand description
Allowable strain limits for maximum strain criterion.
Fields§
§eps1t: f64Longitudinal tensile strain limit.
eps1c: f64Longitudinal compressive strain limit (positive value).
eps2t: f64Transverse tensile strain limit.
eps2c: f64Transverse compressive strain limit (positive value).
gamma12_max: f64Shear strain limit.
Trait Implementations§
Source§impl Clone for StrainAllowables
impl Clone for StrainAllowables
Source§fn clone(&self) -> StrainAllowables
fn clone(&self) -> StrainAllowables
Returns a duplicate of the value. Read more
1.0.0 · 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 StrainAllowables
impl Debug for StrainAllowables
Source§impl<'de> Deserialize<'de> for StrainAllowables
impl<'de> Deserialize<'de> for StrainAllowables
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 StrainAllowables
impl PartialEq for StrainAllowables
Source§impl Serialize for StrainAllowables
impl Serialize for StrainAllowables
impl Copy for StrainAllowables
impl StructuralPartialEq for StrainAllowables
Auto Trait Implementations§
impl Freeze for StrainAllowables
impl RefUnwindSafe for StrainAllowables
impl Send for StrainAllowables
impl Sync for StrainAllowables
impl Unpin for StrainAllowables
impl UnsafeUnpin for StrainAllowables
impl UnwindSafe for StrainAllowables
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