Enum vulkano::query::QueryPoolCreationError [] [src]

pub enum QueryPoolCreationError {
    OomError(OomError),
    PipelineStatisticsQueryFeatureNotEnabled,
}

Error that can happen when creating a buffer.

Variants

Not enough memory.

A pipeline statistics pool was requested but the corresponding feature wasn't enabled.

Trait Implementations

impl Clone for QueryPoolCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for QueryPoolCreationError
[src]

Formats the value using the given formatter.

impl PartialEq for QueryPoolCreationError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for QueryPoolCreationError
[src]

impl Error for QueryPoolCreationError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for QueryPoolCreationError
[src]

Formats the value using the given formatter. Read more

impl From<OomError> for QueryPoolCreationError
[src]

Performs the conversion.

impl From<Error> for QueryPoolCreationError
[src]

Performs the conversion.