Enum wgpu_core::command::ResolveError  
source · #[non_exhaustive]pub enum ResolveError {
    MissingBufferUsage,
    BufferOffsetAlignment,
    QueryOverrun {
        start_query: u32,
        end_query: u32,
        query_set_size: u32,
    },
    BufferOverrun {
        start_query: u32,
        end_query: u32,
        stride: u32,
        buffer_size: BufferAddress,
        buffer_start_offset: BufferAddress,
        buffer_end_offset: BufferAddress,
    },
}Expand description
Error encountered while trying to resolve a query.
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.
MissingBufferUsage
BufferOffsetAlignment
QueryOverrun
BufferOverrun
Fields
§
buffer_size: BufferAddress§
buffer_start_offset: BufferAddress§
buffer_end_offset: BufferAddressTrait Implementations§
source§impl Clone for ResolveError
 
impl Clone for ResolveError
source§fn clone(&self) -> ResolveError
 
fn clone(&self) -> ResolveError
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 ResolveError
 
impl Debug for ResolveError
source§impl Display for ResolveError
 
impl Display for ResolveError
source§impl Error for ResolveError
 
impl Error for ResolveError
1.30.0 · 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<ResolveError> for QueryError
 
impl From<ResolveError> for QueryError
source§fn from(source: ResolveError) -> Self
 
fn from(source: ResolveError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for ResolveError
impl Send for ResolveError
impl Sync for ResolveError
impl Unpin for ResolveError
impl UnwindSafe for ResolveError
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