Enum nannou::ui::backend::glium::glium::backend::glutin::glutin::ReleaseBehavior[]

pub enum ReleaseBehavior {
    None,
    Flush,
}

The behavior of the driver when you change the current context.

Variants

Doesn't do anything. Most notably doesn't flush.

Flushes the context that was previously current as if glFlush was called.

Trait Implementations

impl Clone for ReleaseBehavior

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReleaseBehavior

Formats the value using the given formatter. Read more

impl Copy for ReleaseBehavior

impl Eq for ReleaseBehavior

impl PartialEq<ReleaseBehavior> for ReleaseBehavior

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

This method tests for !=.

Auto Trait Implementations