Struct vulkano::instance::debug::MessageTypes [] [src]

pub struct MessageTypes {
    pub error: bool,
    pub warning: bool,
    pub performance_warning: bool,
    pub information: bool,
    pub debug: bool,
}

Type of message.

Fields

An error that may cause undefined results, including an application crash.

An unexpected use.

A potential non-optimal use.

An informational message that may be handy when debugging an application.

Diagnostic information from the loader and layers.

Methods

impl MessageTypes
[src]

Builds a MessageTypes with all fields set to false expect error.

Builds a MessageTypes with all fields set to false expect error, warning and performance_warning.

Builds a MessageTypes with all fields set to false.

Trait Implementations

impl Debug for MessageTypes
[src]

Formats the value using the given formatter.

impl Copy for MessageTypes
[src]

impl Clone for MessageTypes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MessageTypes
[src]

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

This method tests for !=.

impl Eq for MessageTypes
[src]

impl Hash for MessageTypes
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more