Add must_use attribute to Coroutine trait

This commit is contained in:
Henry Sloan 2024-08-12 18:48:03 -07:00
parent db5704ffca
commit 1e445f48d4
2 changed files with 4 additions and 2 deletions

View File

@ -69,6 +69,7 @@ pub enum CoroutineState<Y, R> {
#[lang = "coroutine"]
#[unstable(feature = "coroutine_trait", issue = "43122")]
#[fundamental]
#[must_use = "coroutines are lazy and do nothing unless resumed"]
pub trait Coroutine<R = ()> {
/// The type of value this coroutine yields.
///

View File

@ -13,7 +13,8 @@ impl Database {
}
fn check_connection(&self) -> impl Coroutine<Yield = (), Return = ()> + '_ {
#[coroutine] move || {
#[coroutine]
move || {
let iter = self.get_connection();
for i in iter {
yield i
@ -23,5 +24,5 @@ impl Database {
}
fn main() {
Database.check_connection();
let _ = Database.check_connection();
}