umya-spreadsheet 2.3.3

umya-spreadsheet is a library written in pure Rust to read and write xlsx file.
Documentation
use super::super::super::EnumTrait;
use std::str::FromStr;
#[derive(Clone, Debug)]
pub enum EditAsValues {
    Absolute,
    OneCell,
    TwoCell,
}
impl Default for EditAsValues {
    #[inline]
    fn default() -> Self {
        Self::TwoCell
    }
}
impl EnumTrait for EditAsValues {
    #[inline]
    fn get_value_string(&self) -> &str {
        match &self {
            Self::Absolute => "absolute",
            Self::OneCell => "oneCell",
            Self::TwoCell => "twoCell",
        }
    }
}
impl FromStr for EditAsValues {
    type Err = ();

    #[inline]
    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match input {
            "absolute" => Ok(Self::Absolute),
            "oneCell" => Ok(Self::OneCell),
            "twoCell" => Ok(Self::TwoCell),
            _ => Err(()),
        }
    }
}