pub struct PlyStrength {
pub xt: f64,
pub xc: f64,
pub yt: f64,
pub yc: f64,
pub s12: f64,
}Expand description
Strength properties for a unidirectional ply.
Fields§
§xt: f64Longitudinal tensile strength (Pa).
xc: f64Longitudinal compressive strength (Pa, positive value).
yt: f64Transverse tensile strength (Pa).
yc: f64Transverse compressive strength (Pa, positive value).
s12: f64In-plane shear strength (Pa).
Implementations§
Source§impl PlyStrength
impl PlyStrength
Trait Implementations§
Source§impl Clone for PlyStrength
impl Clone for PlyStrength
Source§fn clone(&self) -> PlyStrength
fn clone(&self) -> PlyStrength
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 PlyStrength
impl Debug for PlyStrength
impl Copy for PlyStrength
Auto Trait Implementations§
impl Freeze for PlyStrength
impl RefUnwindSafe for PlyStrength
impl Send for PlyStrength
impl Sync for PlyStrength
impl Unpin for PlyStrength
impl UnsafeUnpin for PlyStrength
impl UnwindSafe for PlyStrength
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