pub struct DisplaceStats {
pub iterations: usize,
pub final_max_displacement: f64,
pub converged: bool,
}Expand description
Summary statistics returned after the displacement solver finishes.
Fields§
§iterations: usizeNumber of iterations actually performed.
final_max_displacement: f64Maximum per-position movement in the final iteration (coordinate units).
converged: booltrue when the solver terminated because final_max_displacement < convergence_tol.
Trait Implementations§
Source§impl Clone for DisplaceStats
impl Clone for DisplaceStats
Source§fn clone(&self) -> DisplaceStats
fn clone(&self) -> DisplaceStats
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 DisplaceStats
impl RefUnwindSafe for DisplaceStats
impl Send for DisplaceStats
impl Sync for DisplaceStats
impl Unpin for DisplaceStats
impl UnsafeUnpin for DisplaceStats
impl UnwindSafe for DisplaceStats
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