Enum dacite::TryDestroyErrorKind [] [src]

pub enum TryDestroyErrorKind {
    Unsupported,
    InUse(Option<usize>),
    VulkanError(Error),
}

Indicates the kind of error, which occurred while trying to delete a Vulkan object.

Variants

The Vulkan object can not be destroyed explicitly.

This is the case for objects, which are implicitly destroyed with its parent (e.g. PhysicalDevice and Queue).

The Vulkan object is still in use.

The optional usize value indicates the current reference counter.

A Vulkan error occurred at runtime.

Trait Implementations

impl Debug for TryDestroyErrorKind
[src]

Formats the value using the given formatter.

impl Copy for TryDestroyErrorKind
[src]

impl Clone for TryDestroyErrorKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for TryDestroyErrorKind
[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 TryDestroyErrorKind
[src]

impl Hash for TryDestroyErrorKind
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more