pub enum ForceField {
UFF,
DREIDING,
MMFF94,
}Expand description
Force field selection for minimization.
Variants§
UFF
UFF-derived force field (default, fast).
DREIDING
DREIDING force field.
MMFF94
MMFF94 force field (Merck Molecular Force Field 94, industry standard).
Trait Implementations§
Source§impl Clone for ForceField
impl Clone for ForceField
Source§fn clone(&self) -> ForceField
fn clone(&self) -> ForceField
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 moreimpl Copy for ForceField
Source§impl Debug for ForceField
impl Debug for ForceField
Source§impl Default for ForceField
impl Default for ForceField
Source§fn default() -> ForceField
fn default() -> ForceField
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ForceField
impl RefUnwindSafe for ForceField
impl Send for ForceField
impl Sync for ForceField
impl Unpin for ForceField
impl UnsafeUnpin for ForceField
impl UnwindSafe for ForceField
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