cpufreq 0.1.4

Rust interface to the linux cpufreq library
1
2
3
4
5
use super::error::CpuPowerError;
use std::result;


pub type Result<T> = result::Result<T, CpuPowerError>;