[][src]Struct thin_main_loop::MainLoop

pub struct MainLoop<'a> { /* fields omitted */ }

Methods

impl<'a> MainLoop<'a>[src]

pub fn terminate(&self)[src]

pub fn call_asap<F: FnOnce() + 'a>(&self, f: F) -> Result<CbId, MainLoopError>[src]

pub fn call_after<F: FnOnce() + 'a>(
    &self,
    d: Duration,
    f: F
) -> Result<CbId, MainLoopError>
[src]

pub fn call_interval<F: FnMut() -> bool + 'a>(
    &self,
    d: Duration,
    f: F
) -> Result<CbId, MainLoopError>
[src]

pub fn call_io<IO: IOAble + 'a>(&self, io: IO) -> Result<CbId, MainLoopError>[src]

pub fn cancel(&self, cbid: CbId) -> bool[src]

pub fn run(&mut self)[src]

Runs the main loop until terminated.

pub fn run_one(&mut self, allow_wait: bool) -> bool[src]

Runs the main loop once

Returns false if the mainloop was terminated.

pub fn new() -> Result<Self, MainLoopError>[src]

Creates a new main loop

Trait Implementations

impl<'_> Drop for MainLoop<'_>[src]

Auto Trait Implementations

impl<'a> !Send for MainLoop<'a>

impl<'a> !Sync for MainLoop<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]