wgpu

Type Alias RequestAdapterOptions

Source
pub type RequestAdapterOptions<'a, 'b> = RequestAdapterOptionsBase<&'a Surface<'b>>;
Expand description

Additional information required when requesting an adapter.

For use with Instance::request_adapter.

Corresponds to WebGPU GPURequestAdapterOptions.

Aliased Type§

struct RequestAdapterOptions<'a, 'b> {
    pub power_preference: PowerPreference,
    pub force_fallback_adapter: bool,
    pub compatible_surface: Option<&'a Surface<'b>>,
}

Fields§

§power_preference: PowerPreference

Power preference for the adapter.

§force_fallback_adapter: bool

Indicates that only a fallback adapter can be returned. This is generally a “software” implementation on the system.

§compatible_surface: Option<&'a Surface<'b>>

Surface that is required to be presentable with the requested adapter. This does not create the surface, only guarantees that the adapter can present to said surface. For WebGL, this is strictly required, as an adapter can not be created without a surface.

Trait Implementations

Source§

impl<S> Clone for RequestAdapterOptions<S>
where S: Clone,

Source§

fn clone(&self) -> RequestAdapterOptions<S>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<S> Debug for RequestAdapterOptions<S>
where S: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<S> Default for RequestAdapterOptions<S>

Source§

fn default() -> RequestAdapterOptions<S>

Returns the “default value” for a type. Read more
Source§

impl<'de, S> Deserialize<'de> for RequestAdapterOptions<S>
where S: Deserialize<'de>,

Source§

fn deserialize<__D>( __deserializer: __D, ) -> Result<RequestAdapterOptions<S>, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<S> Hash for RequestAdapterOptions<S>
where S: Hash,

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<S> PartialEq for RequestAdapterOptions<S>
where S: PartialEq,

Source§

fn eq(&self, other: &RequestAdapterOptions<S>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<S> Serialize for RequestAdapterOptions<S>
where S: Serialize,

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<S> Eq for RequestAdapterOptions<S>
where S: Eq,

Source§

impl<S> StructuralPartialEq for RequestAdapterOptions<S>