#[derive(Debug, PartialEq, Eq, Hash, Ord, PartialOrd, Copy, Clone)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
pub enum PageTextMaterial {
None,
Parchment,
Stone,
Marble,
Silver,
Bronze,
Valentine,
}
impl PageTextMaterial {
pub const fn as_int(&self) -> u8 {
match self {
Self::None => 0x0,
Self::Parchment => 0x1,
Self::Stone => 0x2,
Self::Marble => 0x3,
Self::Silver => 0x4,
Self::Bronze => 0x5,
Self::Valentine => 0x6,
}
}
pub const fn variants() -> [Self; 7] {
[
Self::None,
Self::Parchment,
Self::Stone,
Self::Marble,
Self::Silver,
Self::Bronze,
Self::Valentine,
]
}
pub const fn from_int(value: u8) -> Result<Self, crate::errors::EnumError> {
match value {
0 => Ok(Self::None),
1 => Ok(Self::Parchment),
2 => Ok(Self::Stone),
3 => Ok(Self::Marble),
4 => Ok(Self::Silver),
5 => Ok(Self::Bronze),
6 => Ok(Self::Valentine),
v => Err(crate::errors::EnumError::new(NAME, v as i128),)
}
}
}
#[cfg(feature = "print-testcase")]
impl PageTextMaterial {
pub const fn as_test_case_value(&self) -> &'static str {
match self {
Self::None => "NONE",
Self::Parchment => "PARCHMENT",
Self::Stone => "STONE",
Self::Marble => "MARBLE",
Self::Silver => "SILVER",
Self::Bronze => "BRONZE",
Self::Valentine => "VALENTINE",
}
}
}
const NAME: &str = "PageTextMaterial";
impl Default for PageTextMaterial {
fn default() -> Self {
Self::None
}
}
impl std::fmt::Display for PageTextMaterial {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::None => f.write_str("None"),
Self::Parchment => f.write_str("Parchment"),
Self::Stone => f.write_str("Stone"),
Self::Marble => f.write_str("Marble"),
Self::Silver => f.write_str("Silver"),
Self::Bronze => f.write_str("Bronze"),
Self::Valentine => f.write_str("Valentine"),
}
}
}
impl TryFrom<u8> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: u8) -> Result<Self, Self::Error> {
Self::from_int(value)
}
}
impl TryFrom<u16> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: u16) -> Result<Self, Self::Error> {
TryInto::<u8>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<u32> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: u32) -> Result<Self, Self::Error> {
TryInto::<u8>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<u64> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: u64) -> Result<Self, Self::Error> {
TryInto::<u8>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<i8> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: i8) -> Result<Self, Self::Error> {
let v = u8::from_le_bytes(value.to_le_bytes());
Self::from_int(v)
}
}
impl TryFrom<i16> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: i16) -> Result<Self, Self::Error> {
TryInto::<u8>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<i32> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: i32) -> Result<Self, Self::Error> {
TryInto::<u8>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<i64> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: i64) -> Result<Self, Self::Error> {
TryInto::<u8>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value.into()))?
.try_into()
}
}
impl TryFrom<usize> for PageTextMaterial {
type Error = crate::errors::EnumError;
fn try_from(value: usize) -> Result<Self, Self::Error> {
TryInto::<u8>::try_into(value)
.map_err(|_| crate::errors::EnumError::new(NAME, value as i128))?
.try_into()
}
}