Files
rxing/src/common/cpp_essentials/direction.rs
2023-03-08 18:51:48 -06:00

15 lines
280 B
Rust

#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum Direction {
Left = -1,
Right = 1,
}
impl From<Direction> for i32 {
fn from(value: Direction) -> Self {
match value {
Direction::Left => -1,
Direction::Right => 1,
}
}
}