routine 0.1.0

Rust coroutine framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub struct Routine {}

pub struct Schedule {}


enum State {
    COROUTINE_DEAD,
    COROUTINE_READY,
    COROUTINE_RUNNING,
    COROUTINE_SUSPEND,
}