pub struct ExtensionSettings {
pub gaussian: String,
pub orca: String,
pub xtb: String,
pub bagel: String,
pub custom: String,
}Expand description
File extension settings for different quantum chemistry programs.
Fields§
§gaussian: StringGaussian output file extension (default: “log”)
orca: StringORCA output file extension (default: “out”)
xtb: StringXTB output file extension (default: “out”)
bagel: StringBAGEL output file extension (default: “json”)
custom: StringCustom QM program output file extension (default: “log”)
Trait Implementations§
Source§impl Clone for ExtensionSettings
impl Clone for ExtensionSettings
Source§fn clone(&self) -> ExtensionSettings
fn clone(&self) -> ExtensionSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtensionSettings
impl Debug for ExtensionSettings
Source§impl Default for ExtensionSettings
impl Default for ExtensionSettings
Source§impl<'de> Deserialize<'de> for ExtensionSettings
impl<'de> Deserialize<'de> for ExtensionSettings
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
Auto Trait Implementations§
impl Freeze for ExtensionSettings
impl RefUnwindSafe for ExtensionSettings
impl Send for ExtensionSettings
impl Sync for ExtensionSettings
impl Unpin for ExtensionSettings
impl UnsafeUnpin for ExtensionSettings
impl UnwindSafe for ExtensionSettings
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.