Enum wgpu_core::command::ResolveError[][src]

pub enum ResolveError {
    MissingBufferUsage,
    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,
    },
}

Error encountered while trying to resolve a query.

Variants

MissingBufferUsage
QueryOverrun

Fields of QueryOverrun

start_query: u32end_query: u32query_set_size: u32
BufferOverrun

Fields of BufferOverrun

start_query: u32end_query: u32stride: u32buffer_size: BufferAddressbuffer_start_offset: BufferAddressbuffer_end_offset: BufferAddress

Trait Implementations

impl Clone for ResolveError[src]

impl Debug for ResolveError[src]

impl Display for ResolveError[src]

impl Error for ResolveError[src]

impl From<ResolveError> for QueryError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast<T> for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Upcast<T> for T