You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async-trait should add #[must_use] declarations on async trait functions. This compiler warning is rather important -- pretty easy to forget to call .await and then have a function call not actually execute that looks like it should be executing.
The text was updated successfully, but these errors were encountered:
async-trait should add
#[must_use]
declarations on async trait functions. This compiler warning is rather important -- pretty easy to forget to call.await
and then have a function call not actually execute that looks like it should be executing.The text was updated successfully, but these errors were encountered: