use castep_cell_fmt::{Cell, CellValue, ToCell, ToCellValue, FromKeyValue, CResult};
use castep_cell_fmt::query::value_as_i32;
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct MaxScfCycles(pub i32);
impl Default for MaxScfCycles {
fn default() -> Self {
Self(30)
}
}
impl FromKeyValue for MaxScfCycles {
const KEY_NAME: &'static str = "MAX_SCF_CYCLES";
fn from_cell_value_kv(value: &CellValue<'_>) -> CResult<Self> {
Ok(Self(value_as_i32(value)?))
}
}
impl ToCell for MaxScfCycles {
fn to_cell(&self) -> Cell<'_> {
Cell::KeyValue("MAX_SCF_CYCLES", CellValue::Int(self.0))
}
}
impl ToCellValue for MaxScfCycles {
fn to_cell_value(&self) -> CellValue<'_> {
CellValue::Int(self.0)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_from_cell_value() {
let val = CellValue::Int(20);
let result = MaxScfCycles::from_cell_value_kv(&val).unwrap();
assert_eq!(result.0, 20);
}
#[test]
fn test_key_name() {
assert_eq!(MaxScfCycles::KEY_NAME, "MAX_SCF_CYCLES");
}
}