pub struct Ply {
pub lamina: Lamina,
pub angle: f64,
pub thickness: f64,
}Expand description
A single ply in a laminate.
Fields§
§lamina: LaminaLamina material properties.
angle: f64Ply angle (radians, measured from laminate x-axis).
thickness: f64Ply thickness (m).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ply
impl<'de> Deserialize<'de> for Ply
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
impl StructuralPartialEq for Ply
Auto Trait Implementations§
impl Freeze for Ply
impl RefUnwindSafe for Ply
impl Send for Ply
impl Sync for Ply
impl Unpin for Ply
impl UnsafeUnpin for Ply
impl UnwindSafe for Ply
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