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
//! Errors

use core::fmt;

/// An enum representing errors.
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
pub enum Error {
    /// The address passed as an argument is not aligned correctly.
    ///
    /// # Examples
    ///
    /// An error representing that the address 0x1001 is not 4 byte aligned.
    /// ```
    /// use accessor::error::Error;
    ///
    /// Error::NotAligned {
    ///     address: 0x1001,
    ///     alignment: 4,
    /// };
    /// ```
    NotAligned {
        /// The address passed as an argument.
        address: usize,
        /// The address must be `alignment` byte aligned.
        alignment: usize,
    },
    /// Attempted to create an empty array accessor.
    EmptyArray,
}
impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::NotAligned { alignment, address } => {
                write!(
                    f,
                    "Address 0x{:X} is not {} byte aligned.",
                    address, alignment
                )
            }
            Error::EmptyArray => write!(f, "Attempted to create an empty array accessor."),
        }
    }
}