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
60
61
62
63
64
65
66
67
68
69
70
use super::*;
use std::io::Error as IoError;
use std::string::{FromUtf16Error, FromUtf8Error};

macro_rules! win_errs {
	($($(#[$item_attrs:meta])* $name:ident : $err_name:ident),*) => (
		use std::{
			error::Error,
			fmt::{Display, Formatter, Result}
		};

		/// Contains wrapped error types.
		#[derive(Debug)]
		pub enum WinError {
			$(
				$(#[$item_attrs])*
				$name($err_name),
			)*
		}

		impl Error for WinError {
			fn description(&self) -> &str {
				match *self {
					$(
						WinError::$name(ref err) => Error::description(err as &Error),
					)*
				}
			}
			fn cause(&self) -> Option<&Error> {
				match *self {
					$(
						WinError::$name(ref err) => Some(err as &Error),
					)*
				}
			}
		}
		impl Display for WinError {
			fn fmt(&self, f: &mut Formatter) -> Result {
				match *self {
					$(
						WinError::$name(ref err) => Display::fmt(&err, f),
					)*
				}
			}
		}

		$(
			impl From<$err_name> for WinError {
				fn from(value: $err_name) -> WinError {
					WinError::$name(value)
				}
			}
		)*
	);
}

win_errs! {
    /// An argument error.
    Argument: ArgumentError,
    /// An error which occurred while converting to a string from a
    /// UTF-8 byte vector.
    FromUtf8: FromUtf8Error,
    /// An error which occurred while converting to a string from a
    /// UTF-16 byte vector.
    FromUtf16: FromUtf16Error,
    /// An invalid handle error.
    InvalidHandle: InvalidHandleError,
    /// An IO or OS error.
    Io: IoError
}