Struct wgpu_types::DeviceDescriptor [−][src]
#[repr(C)]pub struct DeviceDescriptor<L> {
pub label: L,
pub features: Features,
pub limits: Limits,
}Expand description
Describes a [Device].
Fields
label: LDebug label for the device.
features: FeaturesFeatures that the device should support. If any feature is not supported by the adapter, creating a device will panic.
limits: LimitsLimits that the device should support. If any limit is “better” than the limit exposed by the adapter, creating a device will panic.
Implementations
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
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
Mutably borrows from an owned value. Read more