pub enum Relation {
Low(bool),
High(bool),
Close(bool),
}
Expand description
CPU frequency selection relations.
CPU frequency selection relations, each optionally marked as “efficient”.
Variants§
Low(bool)
Select the lowest frequency at or above target.
High(bool)
Select the highest frequency below or at target.
Close(bool)
Select the closest frequency to the target.
Trait Implementations§
impl Copy for Relation
impl Eq for Relation
impl StructuralPartialEq for Relation
Auto Trait Implementations§
impl Freeze for Relation
impl RefUnwindSafe for Relation
impl Send for Relation
impl Sync for Relation
impl Unpin for Relation
impl UnwindSafe for Relation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more