pub enum BackUpSetting {
BackupInterval(i64),
NumBackupIter(u64),
}Variants§
BackupInterval(i64)
This keyword specifies the interval, in seconds, between updates of the backup restart files. This keyword is applicable for geometry optimization, molecular dynamics, phonon or transition state search runs. A value which is less than or equal to zero indicates that no updates will be performed.
NumBackupIter(u64)
Trait Implementations§
Source§impl Clone for BackUpSetting
impl Clone for BackUpSetting
Source§fn clone(&self) -> BackUpSetting
fn clone(&self) -> BackUpSetting
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 BackUpSetting
impl Debug for BackUpSetting
Source§impl Default for BackUpSetting
impl Default for BackUpSetting
Source§impl<'de> Deserialize<'de> for BackUpSetting
impl<'de> Deserialize<'de> for BackUpSetting
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
Source§impl Display for BackUpSetting
impl Display for BackUpSetting
Source§impl Hash for BackUpSetting
impl Hash for BackUpSetting
Source§impl KeywordDisplay for BackUpSetting
impl KeywordDisplay for BackUpSetting
Source§impl Ord for BackUpSetting
impl Ord for BackUpSetting
Source§fn cmp(&self, other: &BackUpSetting) -> Ordering
fn cmp(&self, other: &BackUpSetting) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BackUpSetting
impl PartialEq for BackUpSetting
Source§impl PartialOrd for BackUpSetting
impl PartialOrd for BackUpSetting
Source§impl Serialize for BackUpSetting
impl Serialize for BackUpSetting
impl Copy for BackUpSetting
impl Eq for BackUpSetting
impl StructuralPartialEq for BackUpSetting
Auto Trait Implementations§
impl Freeze for BackUpSetting
impl RefUnwindSafe for BackUpSetting
impl Send for BackUpSetting
impl Sync for BackUpSetting
impl Unpin for BackUpSetting
impl UnwindSafe for BackUpSetting
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