diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-03-11 20:29:45 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-11 20:29:45 +0100 |
| commit | fedf70acb1e8a51c36a970bf20aa4e6febf815f9 (patch) | |
| tree | dca024c85dac6655a620d931fd38ff7d58f54960 /library/std/src/sys/unix/stack_overflow.rs | |
| parent | 86376e3aeae46f31ba14e82835ed27a063fb31e5 (diff) | |
| parent | 3f2cb6eba1ce2dfdc4db3743f29363396942ce28 (diff) | |
| download | rust-fedf70acb1e8a51c36a970bf20aa4e6febf815f9.tar.gz rust-fedf70acb1e8a51c36a970bf20aa4e6febf815f9.zip | |
Rollup merge of #94818 - yoshuawuyts:into-future-associated-type, r=joshtriplett
Rename `IntoFuture::Future` to `IntoFuture::IntoFuture`
Ref: https://github.com/rust-lang/rust/issues/67644#issuecomment-1051401459
This renames `IntoFuture::Future` to `IntoFuture::IntoFuture`. This adds the `Into*` prefix to the associated type, similar to the [`IntoIterator::IntoIter`](https://doc.rust-lang.org/std/iter/trait.IntoIterator.html#associatedtype.IntoIter) associated type. It's my mistake we didn't do so in the first place. This fixes that and brings the two closer together. Thanks!
### References
__`IntoIterator` trait def__
```rust
pub trait IntoIterator {
type Item;
type IntoIter: Iterator<Item = Self::Item>;
fn into_iter(self) -> Self::IntoIter;
}
```
__`IntoFuture` trait def__
```rust
pub trait IntoFuture {
type Output;
type IntoFuture: Future<Output = Self::Output>; // Prior to this PR: `type Future:`
fn into_future(self) -> Self::IntoFuture;
}
```
cc/ `@eholk` `@rust-lang/wg-async`
Diffstat (limited to 'library/std/src/sys/unix/stack_overflow.rs')
0 files changed, 0 insertions, 0 deletions
