Enum limn_core::prelude::glutin::ControlFlow []

pub enum ControlFlow {
    Continue,
    Break,
}

Returned by the user callback given to the EventsLoop::run_forever method.

Indicates whether the run_forever method should continue or complete.

Variants

Continue looping and waiting for events.

Break from the event loop.

Trait Implementations

impl Debug for ControlFlow

Formats the value using the given formatter. Read more

impl PartialEq<ControlFlow> for ControlFlow

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

1.0.0
[src]

This method tests for !=.

impl Copy for ControlFlow

impl Eq for ControlFlow

impl Clone for ControlFlow

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more