about summary refs log blame commit diff
path: root/src/types/direction.rs
blob: 9b5c0991da8d7829d6d1aa97e308752348e2df45 (plain) (tree)
1
2
3
4
5
6
7
8







                                                       



              
 
use proptest_derive::Arbitrary;

#[derive(Clone, Copy, Debug, PartialEq, Eq, Arbitrary)]
pub enum Direction {
    Left,
    Up,
    Down,
    Right,
    UpLeft,
    UpRight,
    DownRight,
    DownLeft,
}