pub struct ProgressiveFailureResult {
pub first_ply_failure_load: f64,
pub first_failed_ply: usize,
pub ultimate_load: f64,
pub n_failed_plies: usize,
}Expand description
Result of progressive failure analysis.
Fields§
§first_ply_failure_load: f64Load factor at first ply failure.
first_failed_ply: usizeIndex of the first ply to fail.
ultimate_load: f64Load factor at last ply failure (ultimate).
n_failed_plies: usizeNumber of plies that failed.
Trait Implementations§
Source§impl Clone for ProgressiveFailureResult
impl Clone for ProgressiveFailureResult
Source§fn clone(&self) -> ProgressiveFailureResult
fn clone(&self) -> ProgressiveFailureResult
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 ProgressiveFailureResult
impl RefUnwindSafe for ProgressiveFailureResult
impl Send for ProgressiveFailureResult
impl Sync for ProgressiveFailureResult
impl Unpin for ProgressiveFailureResult
impl UnsafeUnpin for ProgressiveFailureResult
impl UnwindSafe for ProgressiveFailureResult
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