[go: up one dir, main page]

sysinfo 0.30.11

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 CpuInner;

impl CpuInner {
    pub(crate) fn new() -> Self {
        Self
    }

    pub(crate) fn cpu_usage(&self) -> f32 {
        0.0
    }

    pub(crate) fn name(&self) -> &str {
        ""
    }

    pub(crate) fn frequency(&self) -> u64 {
        0
    }

    pub(crate) fn vendor_id(&self) -> &str {
        ""
    }

    pub(crate) fn brand(&self) -> &str {
        ""
    }
}