Struct wgpu_types::DeviceDescriptor
source · #[repr(C)]pub struct DeviceDescriptor<L> {
pub label: L,
pub required_features: Features,
pub required_limits: Limits,
}
Expand description
Describes a Device
.
Corresponds to WebGPU GPUDeviceDescriptor
.
Fields§
§label: L
Debug label for the device.
required_features: Features
Specifies the features that are required by the device request. The request will fail if the adapter cannot provide these features.
Exactly the specified set of features, and no more or less, will be allowed in validation of API calls on the resulting device.
required_limits: Limits
Specifies the limits that are required by the device request. The request will fail if the adapter cannot provide these limits.
Exactly the specified limits, and no better or worse, will be allowed in validation of API calls on the resulting device.
Implementations§
source§impl<L> DeviceDescriptor<L>
impl<L> DeviceDescriptor<L>
sourcepub fn map_label<K>(&self, fun: impl FnOnce(&L) -> K) -> DeviceDescriptor<K>
pub fn map_label<K>(&self, fun: impl FnOnce(&L) -> K) -> DeviceDescriptor<K>
Takes a closure and maps the label of the device descriptor into another.
Trait Implementations§
source§impl<L: Clone> Clone for DeviceDescriptor<L>
impl<L: Clone> Clone for DeviceDescriptor<L>
source§fn clone(&self) -> DeviceDescriptor<L>
fn clone(&self) -> DeviceDescriptor<L>
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<L: Debug> Debug for DeviceDescriptor<L>
impl<L: Debug> Debug for DeviceDescriptor<L>
source§impl<L: Default> Default for DeviceDescriptor<L>
impl<L: Default> Default for DeviceDescriptor<L>
source§fn default() -> DeviceDescriptor<L>
fn default() -> DeviceDescriptor<L>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<L> Freeze for DeviceDescriptor<L>where
L: Freeze,
impl<L> RefUnwindSafe for DeviceDescriptor<L>where
L: RefUnwindSafe,
impl<L> Send for DeviceDescriptor<L>where
L: Send,
impl<L> Sync for DeviceDescriptor<L>where
L: Sync,
impl<L> Unpin for DeviceDescriptor<L>where
L: Unpin,
impl<L> UnwindSafe for DeviceDescriptor<L>where
L: 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