Struct wgpu::DownlevelCapabilities 
source · pub struct DownlevelCapabilities {
    pub flags: DownlevelFlags,
    pub limits: DownlevelLimits,
    pub shader_model: ShaderModel,
}Expand description
Lists various ways the underlying platform does not conform to the WebGPU standard.
Fields§
§flags: DownlevelFlagsCombined boolean flags.
limits: DownlevelLimitsAdditional limits
shader_model: ShaderModelWhich collections of features shaders support. Defined in terms of D3D’s shader models.
Implementations§
source§impl DownlevelCapabilities
 
impl DownlevelCapabilities
sourcepub fn is_webgpu_compliant(&self) -> bool
 
pub fn is_webgpu_compliant(&self) -> bool
Returns true if the underlying platform offers complete support of the baseline WebGPU standard.
If this returns false, some parts of the API will result in validation errors where they would not normally. These parts can be determined by the values in this structure.
Trait Implementations§
source§impl Clone for DownlevelCapabilities
 
impl Clone for DownlevelCapabilities
source§fn clone(&self) -> DownlevelCapabilities
 
fn clone(&self) -> DownlevelCapabilities
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 DownlevelCapabilities
 
impl Debug for DownlevelCapabilities
source§impl Default for DownlevelCapabilities
 
impl Default for DownlevelCapabilities
source§fn default() -> DownlevelCapabilities
 
fn default() -> DownlevelCapabilities
Returns the “default value” for a type. Read more
source§impl Hash for DownlevelCapabilities
 
impl Hash for DownlevelCapabilities
source§impl Ord for DownlevelCapabilities
 
impl Ord for DownlevelCapabilities
source§fn cmp(&self, other: &DownlevelCapabilities) -> Ordering
 
fn cmp(&self, other: &DownlevelCapabilities) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for DownlevelCapabilities
 
impl PartialEq for DownlevelCapabilities
source§fn eq(&self, other: &DownlevelCapabilities) -> bool
 
fn eq(&self, other: &DownlevelCapabilities) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd for DownlevelCapabilities
 
impl PartialOrd for DownlevelCapabilities
source§fn partial_cmp(&self, other: &DownlevelCapabilities) -> Option<Ordering>
 
fn partial_cmp(&self, other: &DownlevelCapabilities) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moreimpl Eq for DownlevelCapabilities
impl StructuralEq for DownlevelCapabilities
impl StructuralPartialEq for DownlevelCapabilities
Auto Trait Implementations§
impl RefUnwindSafe for DownlevelCapabilities
impl Send for DownlevelCapabilities
impl Sync for DownlevelCapabilities
impl Unpin for DownlevelCapabilities
impl UnwindSafe for DownlevelCapabilities
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
source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.