Closed yoshuawuyts closed 9 months ago
From talking with @fishrock123, effect generic trait decls it was unclear that the trait-level async is linked to the method-level async.
async
We should probably make that link clear in the summary section straight away.
My preference would be something directly in the example:
#[maybe(async)] trait Into<T>: Sized { #[maybe(async)] // <-- Requires the `#[maybe()]` on the Trait fn into(self) -> T; }
From talking with @fishrock123, effect generic trait decls it was unclear that the trait-level
async
is linked to the method-levelasync
.We should probably make that link clear in the summary section straight away.