sysinfo 0.38.4

Library to get system information such as processes, CPUs, disks, components and networks
Documentation
// Take a look at the license at the top of the repository in the LICENSE file.

pub(crate) struct MotherboardInner;

impl MotherboardInner {
    pub(crate) fn new() -> Option<Self> {
        None
    }

    pub(crate) fn name(&self) -> Option<String> {
        unreachable!()
    }

    pub(crate) fn vendor_name(&self) -> Option<String> {
        unreachable!()
    }

    pub(crate) fn version(&self) -> Option<String> {
        unreachable!()
    }

    pub(crate) fn serial_number(&self) -> Option<String> {
        unreachable!()
    }

    pub(crate) fn asset_tag(&self) -> Option<String> {
        unreachable!()
    }
}