Enum wgpu_core::command::DispatchError
source · #[non_exhaustive]pub enum DispatchError {
MissingPipeline,
IncompatibleBindGroup {
index: u32,
diff: Vec<String>,
},
InvalidGroupSize {
current: [u32; 3],
limit: u32,
},
BindingSizeTooSmall(LateMinBufferBindingSizeMismatch),
}
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.
MissingPipeline
IncompatibleBindGroup
InvalidGroupSize
BindingSizeTooSmall(LateMinBufferBindingSizeMismatch)
Trait Implementations§
source§impl Clone for DispatchError
impl Clone for DispatchError
source§fn clone(&self) -> DispatchError
fn clone(&self) -> DispatchError
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 DispatchError
impl Debug for DispatchError
source§impl Display for DispatchError
impl Display for DispatchError
source§impl Error for DispatchError
impl Error for DispatchError
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<DispatchError> for ComputePassErrorInner
impl From<DispatchError> for ComputePassErrorInner
source§fn from(source: DispatchError) -> Self
fn from(source: DispatchError) -> Self
Converts to this type from the input type.
source§impl From<LateMinBufferBindingSizeMismatch> for DispatchError
impl From<LateMinBufferBindingSizeMismatch> for DispatchError
source§fn from(source: LateMinBufferBindingSizeMismatch) -> Self
fn from(source: LateMinBufferBindingSizeMismatch) -> Self
Converts to this type from the input type.
source§impl PartialEq for DispatchError
impl PartialEq for DispatchError
source§fn eq(&self, other: &DispatchError) -> bool
fn eq(&self, other: &DispatchError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for DispatchError
impl StructuralPartialEq for DispatchError
Auto Trait Implementations§
impl Freeze for DispatchError
impl RefUnwindSafe for DispatchError
impl Send for DispatchError
impl Sync for DispatchError
impl Unpin for DispatchError
impl UnwindSafe for DispatchError
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§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.