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

Derived Implementations

impl Debug for MessageType

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

impl Copy for MessageType

impl Clone for MessageType

fn clone(&self) -> MessageType

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