// Take a look at the license at the top of the repository in the LICENSE file.
usecrate::sys::utils::get_kenv_var;pub(crate)structProductInner;implProductInner{pub(crate)fnfamily()->Option<String>{get_kenv_var(b"smbios.system.family\0")}pub(crate)fnname()->Option<String>{get_kenv_var(b"smbios.system.product\0")}pub(crate)fnserial_number()->Option<String>{get_kenv_var(b"smbios.system.serial\0")}pub(crate)fnstock_keeping_unit()->Option<String>{get_kenv_var(b"smbios.system.sku\0")}pub(crate)fnuuid()->Option<String>{get_kenv_var(b"smbios.system.uuid\0")}pub(crate)fnversion()->Option<String>{get_kenv_var(b"smbios.system.version\0")}pub(crate)fnvendor_name()->Option<String>{get_kenv_var(b"smbios.system.maker\0")}}