pub struct HashinResult {
pub fiber_tension: f64,
pub fiber_compression: f64,
pub matrix_tension: f64,
pub matrix_compression: f64,
pub failed: bool,
}Expand description
Hashin failure result with separate modes.
Fields§
§fiber_tension: f64Fiber tension failure index.
fiber_compression: f64Fiber compression failure index.
matrix_tension: f64Matrix tension failure index.
matrix_compression: f64Matrix compression failure index.
failed: boolWhether any mode has failed.
Trait Implementations§
Source§impl Clone for HashinResult
impl Clone for HashinResult
Source§fn clone(&self) -> HashinResult
fn clone(&self) -> HashinResult
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 HashinResult
impl Debug for HashinResult
impl Copy for HashinResult
Auto Trait Implementations§
impl Freeze for HashinResult
impl RefUnwindSafe for HashinResult
impl Send for HashinResult
impl Sync for HashinResult
impl Unpin for HashinResult
impl UnsafeUnpin for HashinResult
impl UnwindSafe for HashinResult
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