use castep_cell_fmt::{Cell, CellValue, ToCell, ToCellValue};
use castep_cell_fmt::parse::{FromCellValue, FromKeyValue};
use castep_cell_fmt::{CResult};
use castep_cell_fmt::query::value_as_f64;
#[derive(Debug, Default, Clone, Copy, PartialEq, PartialOrd)]
pub struct SedcLambdaObs(pub f64);
impl FromCellValue for SedcLambdaObs {
fn from_cell_value(value: &CellValue<'_>) -> CResult<Self> {
Ok(Self(value_as_f64(value)?))
}
}
impl FromKeyValue for SedcLambdaObs {
const KEY_NAME: &'static str = "SEDC_LAMBDA_OBS";
fn from_cell_value_kv(value: &CellValue<'_>) -> CResult<Self> {
Self::from_cell_value(value)
}
}
impl ToCell for SedcLambdaObs {
fn to_cell(&self) -> Cell<'_> {
Cell::KeyValue("SEDC_LAMBDA_OBS", CellValue::Float(self.0))
}
}
impl ToCellValue for SedcLambdaObs {
fn to_cell_value(&self) -> CellValue<'_> {
CellValue::Float(self.0)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_from_cell_value() {
let val = CellValue::Float(0.0);
let result = SedcLambdaObs::from_cell_value(&val).unwrap();
assert_eq!(result.0, 0.0);
}
#[test]
fn test_key_name() {
assert_eq!(SedcLambdaObs::KEY_NAME, "SEDC_LAMBDA_OBS");
}
}