Enum wgpu_core::command::QueryUseError [−][src]
pub enum QueryUseError {
OutOfBounds {
query_index: u32,
query_set_size: u32,
},
UsedTwiceInsideRenderpass {
query_index: u32,
},
AlreadyStarted {
active_query_index: u32,
new_query_index: u32,
},
AlreadyStopped,
IncompatibleType {
set_type: SimplifiedQueryType,
query_type: SimplifiedQueryType,
},
}Expand description
Error encountered while trying to use queries
Variants
Show fields
Fields of UsedTwiceInsideRenderpass
query_index: u32Show fields
Fields of IncompatibleType
set_type: SimplifiedQueryTypequery_type: SimplifiedQueryTypeTrait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for QueryUseErrorimpl Send for QueryUseErrorimpl Sync for QueryUseErrorimpl Unpin for QueryUseErrorimpl UnwindSafe for QueryUseErrorBlanket Implementations
Mutably borrows from an owned value. Read more