[][src]Crate intel_pstate

Crate for fetching and modifying the intel_pstate kernel parameters.

Example

use std::io;
use intel_pstate::PState;

fn main() -> io::Result<()> {
    if let Ok(pstate) = PState::new() {
        pstate.set_min_perf_pct(50)?;
        pstate.set_max_perf_pct(100)?;
        pstate.set_no_turbo(false)?;
    }

    Ok(())
}

Structs

PState

Handle for fetching and modifying Intel PState kernel parameters.

PStateValues

A set of pstate values that was retrieved, or is to be set.

Enums

PStateError