pub trait RuntimeLoop {
    fn waker(&self) -> Arc<dyn RuntimeWaker>;
    fn run<T>(&self, on_step: impl FnMut() -> ControlFlow<T>) -> T;
}

Required Methods

Implementors