use locspan_derive::StrippedPartialEq;
use std::fmt;
#[derive(Clone, Copy, PartialEq, StrippedPartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
pub enum Direction {
Ltr,
Rtl,
}
impl Direction {
pub fn as_str(&self) -> &'static str {
match self {
Direction::Ltr => "ltr",
Direction::Rtl => "rtl",
}
}
}
impl<'a> TryFrom<&'a str> for Direction {
type Error = &'a str;
#[inline(always)]
fn try_from(name: &'a str) -> Result<Direction, &'a str> {
match name {
"ltr" => Ok(Direction::Ltr),
"rtl" => Ok(Direction::Rtl),
_ => Err(name),
}
}
}
impl fmt::Display for Direction {
#[inline(always)]
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Direction::Ltr => write!(f, "ltr"),
Direction::Rtl => write!(f, "rtl"),
}
}
}