future_form 0.3.1

Abstractions over Send and !Send futures
Documentation
1
2
3
4
5
6
7
8
use future_form::{future_form, FutureForm};

#[future_form(Sendable, Local)]
trait Counter<K: FutureForm> {
    fn next(&self) -> K::Future<'_, u32>;
}

fn main() {}