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

/// An error to describe invalid stride states
#[derive(Clone, Debug, PartialEq)]
pub enum StrideError {
    /// stride leads to out of bounds indexing
    OutOfBounds,
    /// stride leads to aliasing array elements
    Unsupported,
}

impl Error for StrideError {
    fn description(&self) -> &str {
        match *self {
            StrideError::OutOfBounds =>
                "stride leads to out of bounds indexing",
            StrideError::Unsupported =>
                "stride leads to aliasing array elements",
        }
    }
}

impl fmt::Display for StrideError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        self.description().fmt(f)
    }
}