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 TileFlipValues {
    Horizontal,
    HorizontalAndVertical,
    None,
    Vertical,
}
impl Default for TileFlipValues {
    #[inline]
    fn default() -> Self {
        Self::None
    }
}
impl EnumTrait for TileFlipValues {
    #[inline]
    fn get_value_string(&self) -> &str {
        match &self {
            Self::Horizontal => "x",
            Self::HorizontalAndVertical => "xy",
            Self::None => "none",
            Self::Vertical => "y",
        }
    }
}
impl FromStr for TileFlipValues {
    type Err = ();

    #[inline]
    fn from_str(input: &str) -> Result<Self, Self::Err> {
        match input {
            "x" => Ok(Self::Horizontal),
            "xy" => Ok(Self::HorizontalAndVertical),
            "none" => Ok(Self::None),
            "y" => Ok(Self::Vertical),
            _ => Err(()),
        }
    }
}