ipconfig 0.1.0

Get network adapters information for windows.
1
2
3
4
5
6
7
8
9
10
11
12
13
error_chain! {
    foreign_links {
        Utf8(::std::str::Utf8Error);
        FromUtf16(::std::string::FromUtf16Error);
    }

    errors {
        Os(error: u32) {
            description("Win32 error occurred")
            display("Win32 error occurred: {}", error)
        }
    }
}