-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #50070 - toidiu:ak-2093-outlives, r=nikomatsakis
2093 infer outlives requirements Tracking issue: #44493 RFC: rust-lang/rfcs#2093 - [x] add `rustc_attrs` flag - [x] use `RequirePredicates` type - [x] handle explicit predicates on `dyn` Trait - [x] handle explicit predicates on projections - [x] more tests - [x] remove `unused`, `dead_code` and etc.. - [x] documentation
- Loading branch information
Showing
45 changed files
with
676 additions
and
725 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
src/doc/unstable-book/src/language-features/infer-outlives-requirements.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# `infer_outlives_requirements` | ||
|
||
The tracking issue for this feature is: [#44493] | ||
|
||
[#44493]: https://github.com/rust-lang/rust/issues/44493 | ||
|
||
------------------------ | ||
The `infer_outlives_requirements` feature indicates that certain | ||
outlives requirements can be infered by the compiler rather than | ||
stating them explicitly. | ||
|
||
For example, currently generic struct definitions that contain | ||
references, require where-clauses of the form T: 'a. By using | ||
this feature the outlives predicates will be infered, although | ||
they may still be written explicitly. | ||
|
||
```rust,ignore (pseudo-Rust) | ||
struct Foo<'a, T> | ||
where T: 'a // <-- currently required | ||
{ | ||
bar: &'a T, | ||
} | ||
``` | ||
|
||
|
||
## Examples: | ||
|
||
|
||
```rust,ignore (pseudo-Rust) | ||
#![feature(infer_outlives_requirements)] | ||
// Implicitly infer T: 'a | ||
struct Foo<'a, T> { | ||
bar: &'a T, | ||
} | ||
``` | ||
|
||
```rust,ignore (pseudo-Rust) | ||
#![feature(infer_outlives_requirements)] | ||
// Implicitly infer `U: 'b` | ||
struct Foo<'b, U> { | ||
bar: Bar<'b, U> | ||
} | ||
struct Bar<'a, T> where T: 'a { | ||
x: &'a (), | ||
y: T, | ||
} | ||
``` | ||
|
||
```rust,ignore (pseudo-Rust) | ||
#![feature(infer_outlives_requirements)] | ||
// Implicitly infer `b': 'a` | ||
struct Foo<'a, 'b, T> { | ||
x: &'a &'b T | ||
} | ||
``` | ||
|
||
```rust,ignore (pseudo-Rust) | ||
#![feature(infer_outlives_requirements)] | ||
// Implicitly infer `<T as std::iter::Iterator>::Item : 'a` | ||
struct Foo<'a, T: Iterator> { | ||
bar: &'a T::Item | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.