Enum vulkano::OomError [] [src]

pub enum OomError {
    OutOfHostMemory,
    OutOfDeviceMemory,
}

Error type returned by most Vulkan functions.

Variants

There is no memory available on the host (ie. the CPU, RAM, etc.).

There is no memory available on the device (ie. video memory).

Trait Implementations

impl From<OomError> for BufferCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for BufferViewCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for BuildError
[src]

[src]

Performs the conversion.

impl From<OomError> for PersistentDescriptorSetBuildError
[src]

[src]

Performs the conversion.

impl From<OomError> for PipelineLayoutCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for FramebufferCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for RenderPassCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for ImageCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for InstanceCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for LayersListError
[src]

[src]

Performs the conversion.

impl From<OomError> for DeviceMemoryAllocError
[src]

[src]

Performs the conversion.

impl From<OomError> for ComputePipelineCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for GraphicsPipelineCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for QueryPoolCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for SamplerCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for SurfaceCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for CapabilitiesError
[src]

[src]

Performs the conversion.

impl From<OomError> for SwapchainCreationError
[src]

[src]

Performs the conversion.

impl From<OomError> for AcquireError
[src]

[src]

Performs the conversion.

impl Copy for OomError
[src]

impl Clone for OomError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for OomError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for OomError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for OomError
[src]

impl Error for OomError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

impl Display for OomError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for OomError

impl Sync for OomError