Struct wgpu::DownlevelCapabilities
[−]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: DownlevelFlags
Combined boolean flags.
limits: DownlevelLimits
Additional limits
shader_model: ShaderModel
Which collections of features shaders support. Defined in terms of D3D’s shader models.
Implementations
impl DownlevelCapabilities
impl DownlevelCapabilities
pub 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
impl Clone for DownlevelCapabilities
impl Clone for DownlevelCapabilities
fn clone(&self) -> DownlevelCapabilities
fn clone(&self) -> DownlevelCapabilities
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for DownlevelCapabilities
impl Debug for DownlevelCapabilities
impl Default for DownlevelCapabilities
impl Default for DownlevelCapabilities
fn default() -> DownlevelCapabilities
fn default() -> DownlevelCapabilities
Returns the “default value” for a type. Read more
impl Hash for DownlevelCapabilities
impl Hash for DownlevelCapabilities
impl Ord for DownlevelCapabilities
impl Ord for DownlevelCapabilities
impl PartialEq<DownlevelCapabilities> for DownlevelCapabilities
impl PartialEq<DownlevelCapabilities> for DownlevelCapabilities
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 ==
. Read more
fn ne(&self, other: &DownlevelCapabilities) -> bool
fn ne(&self, other: &DownlevelCapabilities) -> bool
This method tests for !=
.
impl PartialOrd<DownlevelCapabilities> for DownlevelCapabilities
impl PartialOrd<DownlevelCapabilities> for DownlevelCapabilities
fn partial_cmp(&self, other: &DownlevelCapabilities) -> Option<Ordering>
fn partial_cmp(&self, other: &DownlevelCapabilities) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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 more
impl 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more