Enum vulkano::instance::debug::DebugCallbackCreationError [] [src]

pub enum DebugCallbackCreationError {
    MissingExtension,
}

Error that can happen when creating a debug callback.

Variants

MissingExtension

The EXT_debug_report extension was not enabled.

Trait Implementations

impl Eq for DebugCallbackCreationError
[src]

impl PartialEq for DebugCallbackCreationError
[src]

fn eq(&self, __arg_0: &DebugCallbackCreationError) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Debug for DebugCallbackCreationError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for DebugCallbackCreationError
[src]

fn clone(&self) -> DebugCallbackCreationError

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for DebugCallbackCreationError
[src]

impl Error for DebugCallbackCreationError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

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

impl Display for DebugCallbackCreationError
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl From<Error> for DebugCallbackCreationError
[src]

fn from(err: Error) -> DebugCallbackCreationError

Performs the conversion.