1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pub mod entities;
pub mod storage;

/// Denotes the direction of an edge. Can be incoming, outgoing or both.
#[derive(
    Clone,
    Copy,
    Hash,
    Eq,
    PartialEq,
    PartialOrd,
    Debug,
    Default,
    serde::Serialize,
    serde::Deserialize,
)]
pub enum Direction {
    OUT,
    IN,
    #[default]
    BOTH,
}