#[non_exhaustive]pub enum BindGroupLayoutEntryError {
StorageTextureCube,
StorageTextureReadWrite,
ArrayUnsupported,
SampleTypeFloatFilterableBindingMultisampled,
Non2DMultisampled(TextureViewDimension),
MissingFeatures(MissingFeatures),
MissingDownlevelFlags(MissingDownlevelFlags),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
StorageTextureCube
StorageTextureReadWrite
ArrayUnsupported
SampleTypeFloatFilterableBindingMultisampled
Non2DMultisampled(TextureViewDimension)
MissingFeatures(MissingFeatures)
MissingDownlevelFlags(MissingDownlevelFlags)
Trait Implementations§
source§impl Clone for BindGroupLayoutEntryError
impl Clone for BindGroupLayoutEntryError
source§fn clone(&self) -> BindGroupLayoutEntryError
fn clone(&self) -> BindGroupLayoutEntryError
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 BindGroupLayoutEntryError
impl Debug for BindGroupLayoutEntryError
source§impl Display for BindGroupLayoutEntryError
impl Display for BindGroupLayoutEntryError
source§impl Error for BindGroupLayoutEntryError
impl Error for BindGroupLayoutEntryError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<MissingDownlevelFlags> for BindGroupLayoutEntryError
impl From<MissingDownlevelFlags> for BindGroupLayoutEntryError
source§fn from(source: MissingDownlevelFlags) -> Self
fn from(source: MissingDownlevelFlags) -> Self
Converts to this type from the input type.
source§impl From<MissingFeatures> for BindGroupLayoutEntryError
impl From<MissingFeatures> for BindGroupLayoutEntryError
source§fn from(source: MissingFeatures) -> Self
fn from(source: MissingFeatures) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BindGroupLayoutEntryError
impl RefUnwindSafe for BindGroupLayoutEntryError
impl Send for BindGroupLayoutEntryError
impl Sync for BindGroupLayoutEntryError
impl Unpin for BindGroupLayoutEntryError
impl UnwindSafe for BindGroupLayoutEntryError
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