#[repr(C)]pub enum NSTDEventLoopControlFlow {
NSTD_EVENT_LOOP_CONTROL_FLOW_POLL = 0,
NSTD_EVENT_LOOP_CONTROL_FLOW_WAIT = 1,
NSTD_EVENT_LOOP_CONTROL_FLOW_EXIT = 2,
}Expand description
Represents an event loop’s control flow.
Variants§
NSTD_EVENT_LOOP_CONTROL_FLOW_POLL = 0
NSTD_EVENT_LOOP_CONTROL_FLOW_WAIT = 1
NSTD_EVENT_LOOP_CONTROL_FLOW_EXIT = 2
Trait Implementations§
Source§impl Into<ControlFlow> for NSTDEventLoopControlFlow
impl Into<ControlFlow> for NSTDEventLoopControlFlow
Source§fn into(self) -> ControlFlow
fn into(self) -> ControlFlow
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for NSTDEventLoopControlFlow
impl RefUnwindSafe for NSTDEventLoopControlFlow
impl Send for NSTDEventLoopControlFlow
impl Sync for NSTDEventLoopControlFlow
impl Unpin for NSTDEventLoopControlFlow
impl UnwindSafe for NSTDEventLoopControlFlow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more