Module redblocks::cpu[][src]

Expand description

Cpu Monitor

Example

#[macro_use]
extern crate redblocks;

use redblocks::{Widget, cpu::Cpu};

fn main() {
    let bar = vec![
        Widget::new_mili(Cpu::new(), 750),
    ];

    start_bar!(bar);
}

Structs