pub struct OdRange {
pub sclk: Range,
pub mclk: Option<Range>,
pub vddc: Option<Range>,
}Expand description
The ranges for overclocking values which the GPU allows to be used.
Fields§
§sclk: RangeClocks range for sclk (in MHz). Should be present on all GPUs.
mclk: Option<Range>Clocks range for mclk (in MHz). Present on discrete GPUs only.
vddc: Option<Range>Voltage range (in mV). Present on Vega10 and older GPUs only.
Trait Implementations§
impl Copy for OdRange
impl Eq for OdRange
impl StructuralPartialEq for OdRange
Auto Trait Implementations§
impl Freeze for OdRange
impl RefUnwindSafe for OdRange
impl Send for OdRange
impl Sync for OdRange
impl Unpin for OdRange
impl UnwindSafe for OdRange
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