future_form 0.3.1

Abstractions over Send and !Send futures
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
error: #[future_form] can only be applied to trait impls, not inherent impls; move these methods into a trait and apply #[future_form] to the trait impl
  --> tests/ui/inherent_impl.rs:10:21
   |
10 | impl<K: FutureForm> InherentType<K> {
   |                     ^^^^^^^^^^^^^^^

warning: unused import: `FutureForm`
 --> tests/ui/inherent_impl.rs:2:19
  |
2 | use future_form::{FutureForm, future_form};
  |                   ^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default