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
use std::fmt;
use std::fmt::Display;

#[derive(Debug, Clone)]
pub struct NmlError {
    error_type: ErrorKind,
}

impl NmlError {
    pub fn new(error_type: ErrorKind) -> Self {
        Self {
            error_type,
        }
    }
}

impl Display for NmlError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{:?}", self.error_type)
    }
}

#[derive(Debug, Clone)]
pub enum ErrorKind {
    InvalidRows,
    InvalidCols,
    CreateMatrix,
    MatrixNotSquare
}

impl Display for ErrorKind {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            ErrorKind::InvalidCols => write!(f, "Invalid number of columns"),
            ErrorKind::InvalidRows => write!(f, "Invalid number of rows"),
            ErrorKind::CreateMatrix => write!(f, "Unable to create matrix"),
            ErrorKind::MatrixNotSquare => write!(f, "Matrix is not square"),
        }
    }
}