pub enum QMProgram {
Gaussian,
Orca,
Bagel,
Xtb,
Custom,
}Expand description
Supported quantum chemistry programs.
Each variant represents a different QM program interface with specific capabilities and file formats:
| Program | Methods | Strengths |
|---|---|---|
Gaussian | DFT, TD-DFT, MP2, CASSCF | Most features, checkpoints |
Orca | DFT, TD-DFT, CASSCF | Good for open-shell systems |
Bagel | CASSCF, MRCI | Advanced wavefunction methods |
Xtb | GFN2-xTB | Fast semi-empirical |
Custom | Any | JSON-configurable interface |
Variants§
Gaussian
Gaussian (most commonly used, full feature support)
Orca
ORCA (excellent for open-shell systems)
Bagel
BAGEL (advanced wavefunction methods)
Xtb
XTB (fast semi-empirical calculations)
Custom
Custom (user-defined via JSON configuration)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for QMProgram
impl<'de> Deserialize<'de> for QMProgram
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for QMProgram
impl Eq for QMProgram
impl StructuralPartialEq for QMProgram
Auto Trait Implementations§
impl Freeze for QMProgram
impl RefUnwindSafe for QMProgram
impl Send for QMProgram
impl Sync for QMProgram
impl Unpin for QMProgram
impl UnsafeUnpin for QMProgram
impl UnwindSafe for QMProgram
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.