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
Fields of UsedTwiceInsideRenderpass
query_index: u32
Fields of IncompatibleType
set_type: SimplifiedQueryType
query_type: SimplifiedQueryType
Trait Implementations
Performs the conversion.
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for QueryUseError
impl Send for QueryUseError
impl Sync for QueryUseError
impl Unpin for QueryUseError
impl UnwindSafe for QueryUseError
Blanket Implementations
Mutably borrows from an owned value. Read more