embassy-executor 0.10.0

async/await executor designed for embedded usage
Documentation
1
2
3
4
5
6
7
8
9
10
#![cfg_attr(feature = "nightly", feature(impl_trait_in_assoc_type))]

struct Foo<'a>(&'a ());

#[embassy_executor::task]
async fn task() -> u32 {
    5
}

fn main() {}