When using coroutines (or async) all type variables must be bound so a coroutine can be constructed.
Erroneous code example:
#![allow(unused)]
fn main() {
async fn bar<T>() -> () {}
async fn foo() {
bar().await; // error: cannot infer type for `T`
}
} In the above example T is unknowable by the compiler. To fix this you must bind T to a concrete type such as String so that a coroutine can then be constructed:
#![allow(unused)]
fn main() {
async fn bar<T>() -> () {}
async fn foo() {
bar::<String>().await;
// ^^^^^^^^ specify type explicitly
}
}
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/error_codes/E0698.html