[][src]Struct vulkanalia::vk::ErrorCode

#[repr(transparent)]pub struct ErrorCode(_);

Result codes that indicate errors.

Implementations

impl ErrorCode[src]

pub const OUT_OF_HOST_MEMORY: Self[src]

pub const OUT_OF_DEVICE_MEMORY: Self[src]

pub const INITIALIZATION_FAILED: Self[src]

pub const DEVICE_LOST: Self[src]

pub const MEMORY_MAP_FAILED: Self[src]

pub const LAYER_NOT_PRESENT: Self[src]

pub const EXTENSION_NOT_PRESENT: Self[src]

pub const FEATURE_NOT_PRESENT: Self[src]

pub const INCOMPATIBLE_DRIVER: Self[src]

pub const TOO_MANY_OBJECTS: Self[src]

pub const FORMAT_NOT_SUPPORTED: Self[src]

pub const FRAGMENTED_POOL: Self[src]

pub const UNKNOWN: Self[src]

pub const OUT_OF_POOL_MEMORY: Self[src]

pub const INVALID_EXTERNAL_HANDLE: Self[src]

pub const FRAGMENTATION: Self[src]

pub const INVALID_OPAQUE_CAPTURE_ADDRESS: Self[src]

pub const SURFACE_LOST_KHR: Self[src]

pub const NATIVE_WINDOW_IN_USE_KHR: Self[src]

pub const OUT_OF_DATE_KHR: Self[src]

pub const INCOMPATIBLE_DISPLAY_KHR: Self[src]

pub const VALIDATION_FAILED_EXT: Self[src]

pub const INVALID_SHADER_NV: Self[src]

pub const INVALID_DRM_FORMAT_MODIFIER_PLANE_LAYOUT_EXT: Self[src]

pub const NOT_PERMITTED_EXT: Self[src]

pub const FULL_SCREEN_EXCLUSIVE_MODE_LOST_EXT: Self[src]

pub const fn from_raw(value: i32) -> Self[src]

Constructs an instance of this enum with the supplied underlying value.

pub const fn as_raw(self) -> i32[src]

Gets the underlying value for this enum instance.

Trait Implementations

impl Clone for ErrorCode[src]

impl Copy for ErrorCode[src]

impl Debug for ErrorCode[src]

impl Default for ErrorCode[src]

impl Display for ErrorCode[src]

impl Eq for ErrorCode[src]

impl Error for ErrorCode[src]

impl From<ErrorCode> for Result[src]

impl From<Result> for ErrorCode[src]

impl Hash for ErrorCode[src]

impl Ord for ErrorCode[src]

impl PartialEq<ErrorCode> for ErrorCode[src]

impl PartialOrd<ErrorCode> for ErrorCode[src]

impl StructuralEq for ErrorCode[src]

impl StructuralPartialEq for ErrorCode[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> From<T> 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.