[][src]Enum vulkayes_core::resource::buffer::error::BufferError

pub enum BufferError<AllocError: Error + 'static> {
    ERROR_OUT_OF_HOST_MEMORY,
    ERROR_OUT_OF_DEVICE_MEMORY,
    ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS,
    AllocationError(AllocError),
}

Variants

ERROR_OUT_OF_HOST_MEMORY
ERROR_OUT_OF_DEVICE_MEMORY
ERROR_INVALID_OPAQUE_CAPTURE_ADDRESS
AllocationError(AllocError)

Trait Implementations

impl<AllocError: Debug + Error + 'static> Debug for BufferError<AllocError>[src]

impl<AllocError: Error + 'static> Display for BufferError<AllocError>[src]

impl<AllocError: Error + 'static> Error for BufferError<AllocError>[src]

impl<AllocError: Error + 'static> From<Result> for BufferError<AllocError>[src]

Auto Trait Implementations

impl<AllocError> RefUnwindSafe for BufferError<AllocError> where
    AllocError: RefUnwindSafe
[src]

impl<AllocError> Send for BufferError<AllocError> where
    AllocError: Send
[src]

impl<AllocError> Sync for BufferError<AllocError> where
    AllocError: Sync
[src]

impl<AllocError> Unpin for BufferError<AllocError> where
    AllocError: Unpin
[src]

impl<AllocError> UnwindSafe for BufferError<AllocError> where
    AllocError: UnwindSafe
[src]

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> 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.