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
Continue looping and waiting for events.
Break
Break from the event loop.
Trait Implementations
impl Debug for ControlFlow
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl PartialEq<ControlFlow> for ControlFlow
fn eq(&self, __arg_0: &ControlFlow) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Copy for ControlFlow
impl Eq for ControlFlow
impl Clone for ControlFlow
fn clone(&self) -> ControlFlow
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more