Enum wgpu_types::PowerPreference
source · #[repr(C)]
pub enum PowerPreference {
LowPower,
HighPerformance,
}
Expand description
Power Preference when choosing a physical adapter.
Corresponds to WebGPU GPUPowerPreference
.
Variants§
LowPower
Adapter that uses the least possible power. This is often an integrated GPU.
HighPerformance
Adapter that has the highest performance. This is often a discrete GPU.
Trait Implementations§
source§impl Clone for PowerPreference
impl Clone for PowerPreference
source§fn clone(&self) -> PowerPreference
fn clone(&self) -> PowerPreference
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PowerPreference
impl Debug for PowerPreference
source§impl Default for PowerPreference
impl Default for PowerPreference
source§fn default() -> PowerPreference
fn default() -> PowerPreference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PowerPreference
impl<'de> Deserialize<'de> for PowerPreference
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for PowerPreference
impl Hash for PowerPreference
source§impl PartialEq<PowerPreference> for PowerPreference
impl PartialEq<PowerPreference> for PowerPreference
source§fn eq(&self, other: &PowerPreference) -> bool
fn eq(&self, other: &PowerPreference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.