-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
stable-rust-blockingFeature not yet present in stable rustFeature not yet present in stable rust
Description
Required for this project
- Tracking issue for
impl Traitinconstandstaticitems andletbindings rust-lang/rust#63065 - Tracking Issue for async_fn_in_trait, return_position_impl_trait_in_trait rust-lang/rust#91611
Reference
https://github.com/rust-lang/rust/labels/S-tracking-impl-incomplete
91611
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);
}Metadata
Metadata
Assignees
Labels
stable-rust-blockingFeature not yet present in stable rustFeature not yet present in stable rust