Struct wgpu::RequestAdapterOptionsBase
#[repr(C)]pub struct RequestAdapterOptionsBase<S> {
pub power_preference: PowerPreference,
pub force_fallback_adapter: bool,
pub compatible_surface: Option<S>,
}
Expand description
Options for requesting adapter.
Corresponds to WebGPU GPURequestAdapterOptions
.
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<S>
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§
§impl<S> Clone for RequestAdapterOptions<S>where
S: Clone,
impl<S> Clone for RequestAdapterOptions<S>where
S: Clone,
§fn clone(&self) -> RequestAdapterOptions<S>
fn clone(&self) -> RequestAdapterOptions<S>
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 more§impl<S> Debug for RequestAdapterOptions<S>where
S: Debug,
impl<S> Debug for RequestAdapterOptions<S>where
S: Debug,
§impl<S> Default for RequestAdapterOptions<S>
impl<S> Default for RequestAdapterOptions<S>
§fn default() -> RequestAdapterOptions<S>
fn default() -> RequestAdapterOptions<S>
Returns the “default value” for a type. Read more
§impl<'de, S> Deserialize<'de> for RequestAdapterOptions<S>where
S: Deserialize<'de>,
impl<'de, S> Deserialize<'de> for RequestAdapterOptions<S>where
S: Deserialize<'de>,
§fn deserialize<__D>(
__deserializer: __D
) -> Result<RequestAdapterOptions<S>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
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
§impl<S> Hash for RequestAdapterOptions<S>where
S: Hash,
impl<S> Hash for RequestAdapterOptions<S>where
S: Hash,
§impl<S> PartialEq for RequestAdapterOptions<S>where
S: PartialEq,
impl<S> PartialEq for RequestAdapterOptions<S>where
S: PartialEq,
§fn eq(&self, other: &RequestAdapterOptions<S>) -> bool
fn eq(&self, other: &RequestAdapterOptions<S>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl<S> Serialize for RequestAdapterOptions<S>where
S: Serialize,
impl<S> Serialize for RequestAdapterOptions<S>where
S: Serialize,
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
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
impl<S> Eq for RequestAdapterOptions<S>where
S: Eq,
impl<S> StructuralEq for RequestAdapterOptions<S>
impl<S> StructuralPartialEq for RequestAdapterOptions<S>
Auto Trait Implementations§
impl<S> RefUnwindSafe for RequestAdapterOptions<S>where
S: RefUnwindSafe,
impl<S> Send for RequestAdapterOptions<S>where
S: Send,
impl<S> Sync for RequestAdapterOptions<S>where
S: Sync,
impl<S> Unpin for RequestAdapterOptions<S>where
S: Unpin,
impl<S> UnwindSafe for RequestAdapterOptions<S>where
S: UnwindSafe,
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more