pub struct CompositeLayup {
pub plies: Vec<Ply>,
}Expand description
A stack of plies forming a composite laminate.
Fields§
§plies: Vec<Ply>Ordered stack of plies (bottom to top).
Implementations§
Trait Implementations§
Source§impl Clone for CompositeLayup
impl Clone for CompositeLayup
Source§fn clone(&self) -> CompositeLayup
fn clone(&self) -> CompositeLayup
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 moreAuto Trait Implementations§
impl Freeze for CompositeLayup
impl RefUnwindSafe for CompositeLayup
impl Send for CompositeLayup
impl Sync for CompositeLayup
impl Unpin for CompositeLayup
impl UnsafeUnpin for CompositeLayup
impl UnwindSafe for CompositeLayup
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