1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
use std::error::Error;
use std::fmt::{Debug, Display, Formatter};

pub type GraphResult<T = ()> = Result<T, GraphError>;

#[derive(Debug)]
pub struct GraphError {
    kind: Box<GraphErrorKind>,
}

#[derive(Debug)]
pub enum Entry {
    Node,
    Edge,
}

#[derive(Debug)]
pub enum GraphErrorKind {
    NodeNotFound,
    EdgeNotFound,
    NodeAlreadyExists,
    EdgeAlreadyExists,
    OutOfRange {
        entry: Entry,
        index: usize,
        max: usize,
    },
}

impl Display for GraphError {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        todo!()
    }
}

impl Error for GraphError {}

impl GraphError {
    pub fn node_out_of_range(index: usize, max: usize) -> Self {
        Self {
            kind: Box::new(GraphErrorKind::OutOfRange {
                entry: Entry::Node,
                index,
                max,
            }),
        }
    }
    pub fn edge_out_of_range(index: usize, max: usize) -> Self {
        Self {
            kind: Box::new(GraphErrorKind::OutOfRange {
                entry: Entry::Edge,
                index,
                max,
            }),
        }
    }
}