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
58
59
use std::{
    error::Error as StdError,
    fmt::{Display, Formatter},
    ops::Range,
};

#[derive(Debug)]
pub struct OutOfBoundsError {
    actual_idx: usize,
    bounds: Range<usize>,
}

impl OutOfBoundsError {
    /// Creates new error.
    pub fn new(actual_idx: usize, bounds: Range<usize>) -> Self {
        Self { actual_idx, bounds }
    }
}

impl Display for OutOfBoundsError {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "index '{}' out of bounds {:?}",
            self.actual_idx, self.bounds,
        )
    }
}

impl StdError for OutOfBoundsError {}

#[derive(Debug)]
pub struct ResizeError {
    details: String,
}

impl ResizeError {
    /// Creates new error with details.
    pub fn new<C>(details: C) -> Self
    where
        C: Into<String>,
    {
        Self {
            details: details.into(),
        }
    }
}

impl Display for ResizeError {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "the size of the bitmap cannot be increased: {}",
            self.details
        )
    }
}

impl StdError for ResizeError {}