steamidfx 2.1.0

Work with steam id easily
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(missing_docs)]
error_chain::error_chain! {
    foreign_links {
        Fmt(::std::fmt::Error);
        Io(::std::io::Error) #[cfg(unix)];
        ParseInt(::std::num::ParseIntError);
    }

    errors {
        InvalidSteamId(id: String) {
            description("Invalid Steam ID.")
            display("Invalid Steam ID: \"{}\".", id)
        }
    }
}