We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
impl Trait
const
static
let
https://github.com/rust-lang/rust/labels/S-tracking-impl-incomplete
Return impl trait in traits
pub trait AsyncGpioIn { fn poll_read(&self, trigger: GpioValue) -> impl Future<Output = ()>; }
Marking trait methods async
pub trait AsyncGpioIn { async fn poll_read(&self, trigger: GpioValue); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Required for this project
impl Trait
inconst
andstatic
items andlet
bindings rust-lang/rust#63065Reference
https://github.com/rust-lang/rust/labels/S-tracking-impl-incomplete
91611
Return impl trait in traits
Marking trait methods async
The text was updated successfully, but these errors were encountered: