pub struct PlyFailureResult {
pub fi_fiber: f64,
pub fi_matrix: f64,
pub fi_shear: f64,
pub failed: bool,
}Expand description
Result of a failure check on a single ply.
Fields§
§fi_fiber: f64Fiber direction failure index (>= 1.0 means failure).
fi_matrix: f64Matrix direction failure index.
fi_shear: f64Shear failure index.
failed: boolWhether any mode has failed.
Trait Implementations§
Source§impl Clone for PlyFailureResult
impl Clone for PlyFailureResult
Source§fn clone(&self) -> PlyFailureResult
fn clone(&self) -> PlyFailureResult
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 PlyFailureResult
impl Debug for PlyFailureResult
impl Copy for PlyFailureResult
Auto Trait Implementations§
impl Freeze for PlyFailureResult
impl RefUnwindSafe for PlyFailureResult
impl Send for PlyFailureResult
impl Sync for PlyFailureResult
impl Unpin for PlyFailureResult
impl UnsafeUnpin for PlyFailureResult
impl UnwindSafe for PlyFailureResult
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