Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
52c5d30
refactor initial-sysroot handling
onur-ozkan Nov 8, 2024
27323aa
improve initial target libdir finding logic
onur-ozkan Nov 8, 2024
673b3d3
restrict synthetic types to standard library types
Walnut356 Nov 17, 2024
f5216ee
Fix typos in pin.rs
aksh1618 Nov 25, 2024
0c8c38f
bootstrap: allow skipping steps with start of path
marcoieni Nov 28, 2024
74cf503
Use consistent wording in docs, use zero instead of 0
timvisee Nov 28, 2024
89b20e9
Also use zero when referencing to capacity or length
timvisee Nov 28, 2024
9fe7750
uplift fold_regions to rustc_type_ir
lcnr Nov 27, 2024
18e2253
move tests into subdir
lcnr Nov 26, 2024
34a8c2d
support revealing defined opaque post borrowck
lcnr Nov 26, 2024
8ecac88
force expanded formatting for non-synthetic types
Walnut356 Nov 28, 2024
76adf05
Rename `-Zparse-only`.
nnethercote Nov 28, 2024
accdfa1
Update `-Zshow-span` help message.
nnethercote Nov 28, 2024
b36dcc1
Improve the diagnostic of fn item in variadic fn
Nov 27, 2024
1e4817c
bless the tests and add a new one
Nov 27, 2024
96773bf
Rollup merge of #132782 - onur-ozkan:cleanup, r=jieyouxu
matthiaskrgr Nov 29, 2024
7044a45
Rollup merge of #133134 - Walnut356:synth_prov, r=Mark-Simulacrum
matthiaskrgr Nov 29, 2024
f2de4f5
Rollup merge of #133466 - aksh1618:patch-1, r=thomcc
matthiaskrgr Nov 29, 2024
bfe7d98
Rollup merge of #133492 - MarcoIeni:bootstrap-path-check, r=onur-ozkan
matthiaskrgr Nov 29, 2024
e35aca7
Rollup merge of #133501 - lcnr:post-borrowck-analysis, r=compiler-errors
matthiaskrgr Nov 29, 2024
c163a7d
Rollup merge of #133530 - timvisee:master, r=jhpratt
matthiaskrgr Nov 29, 2024
8a970c9
Rollup merge of #133538 - dev-ardi:69232-better-diag, r=compiler-errors
matthiaskrgr Nov 29, 2024
0bb4447
Rollup merge of #133590 - nnethercote:rename-parse-only, r=estebank
matthiaskrgr Nov 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions library/core/src/pin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,9 +373,9 @@
//! exactly what we did with our `AddrTracker` example above. Without doing this, you *must not*
//! rely on pinning-related guarantees to apply to your type!
//!
//! If need to truly pin a value of a foreign or built-in type that implements [`Unpin`], you'll
//! need to create your own wrapper type around the [`Unpin`] type you want to pin and then
//! opts-out of [`Unpin`] using [`PhantomPinned`].
//! If you really need to pin a value of a foreign or built-in type that implements [`Unpin`],
//! you'll need to create your own wrapper type around the [`Unpin`] type you want to pin and then
//! opt-out of [`Unpin`] using [`PhantomPinned`].
//!
//! Exposing access to the inner field which you want to remain pinned must then be carefully
//! considered as well! Remember, exposing a method that gives access to a
Expand Down