Enum glium::debug::MessageType [] [src]

pub enum MessageType {
    Error,
    DeprecatedBehavior,
    UndefinedBehavior,
    Portability,
    Performance,
    Marker,
    PushGroup,
    PopGroup,
    Other,
}

Type of a debug message.

Variants

Error

An error, typically from the API

DeprecatedBehavior

Some behavior marked deprecated has been used

UndefinedBehavior

Something has invoked undefined behavior

Portability

Some functionality the user relies upon is not portable

Performance

Code has triggered possible performance issues

Marker

Command stream annotation

PushGroup

Entering a debug group

PopGroup

Leaving a debug group

Other

Any other event

Trait Implementations

impl Debug for MessageType
[src]

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

Formats the value using the given formatter.

impl Copy for MessageType
[src]

impl Clone for MessageType
[src]

fn clone(&self) -> MessageType

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