#![warn(
anonymous_parameters,
missing_copy_implementations,
missing_debug_implementations,
missing_docs,
nonstandard_style,
rust_2018_idioms,
single_use_lifetimes,
trivial_casts,
trivial_numeric_casts,
unreachable_pub,
unused_extern_crates,
unused_qualifications,
variant_size_differences,
unsafe_code
)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/ardaku/whoami/v1/res/icon.svg",
html_favicon_url = "https://raw.githubusercontent.com/ardaku/whoami/v1/res/icon.svg"
)]
mod api;
mod arch;
mod conversions;
mod desktop_env;
pub mod fallible;
mod language;
mod os;
mod platform;
mod result;
#[allow(deprecated)]
pub use self::{
api::{
arch, desktop_env, devicename, devicename_os, distro, distro_os,
hostname, hostname_os, lang, langs, platform, realname, realname_os,
username, username_os,
},
arch::{Arch, Width},
desktop_env::DesktopEnv,
language::{Country, Language},
platform::Platform,
result::Result,
};