pub struct UffMinimizeResult {
pub coords: Vec<[f64; 3]>,
pub energy: f64,
pub iterations: usize,
pub converged: bool,
}Expand description
Result of UFF minimisation.
Fields§
§coords: Vec<[f64; 3]>Final atomic coordinates (Å).
energy: f64Final total energy (kcal/mol).
iterations: usizeNumber of iterations taken.
converged: boolTrue if the gradient norm converged below threshold.
Auto Trait Implementations§
impl Freeze for UffMinimizeResult
impl RefUnwindSafe for UffMinimizeResult
impl Send for UffMinimizeResult
impl Sync for UffMinimizeResult
impl Unpin for UffMinimizeResult
impl UnsafeUnpin for UffMinimizeResult
impl UnwindSafe for UffMinimizeResult
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