Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(Debug)]
#[derive(Clone)]
#[derive(PartialEq)]
#[derive(Default)]
pub enum Direction {
    #[default]
    Bottom,
    BottomLeft,
    BottomRight,
    Top,
    TopLeft,
    TopRight,
    Left,
    Right
}