Type Alias vulkanalia::VkResult

source ·
pub type VkResult<T> = Result<T, ErrorCode>;
Expand description

The result of a executing a fallible Vulkan command.

Aliased Type§

enum VkResult<T> {
    Ok(T),
    Err(ErrorCode),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ErrorCode)

Contains the error value