about summary refs log tree commit diff
path: root/library/core/src/ops/mod.rs
diff options
context:
space:
mode:
authorAdrian Taylor <adetaylor@chromium.org>2024-09-11 12:27:08 +0000
committerAdrian Taylor <adetaylor@chromium.org>2024-10-22 12:55:16 +0000
commit8f85b90ca6d57459eb19accb6aaf781dd1c7bf6c (patch)
tree3c7d77a8f0fb8dc2ee157028bbe54d6244548ae2 /library/core/src/ops/mod.rs
parent916e9ced404f276e90171d7852d436b6ca92df56 (diff)
downloadrust-8f85b90ca6d57459eb19accb6aaf781dd1c7bf6c.tar.gz
rust-8f85b90ca6d57459eb19accb6aaf781dd1c7bf6c.zip
Rename Receiver -> LegacyReceiver
As part of the "arbitrary self types v2" project, we are going to
replace the current `Receiver` trait with a new mechanism based on a
new, different `Receiver` trait.

This PR renames the old trait to get it out the way. Naming is hard.
Options considered included:
* HardCodedReceiver (because it should only be used for things in the
  standard library, and hence is sort-of hard coded)
* LegacyReceiver
* TargetLessReceiver
* OldReceiver

These are all bad names, but fortunately this will be temporary.
Assuming the new mechanism proceeds to stabilization as intended, the
legacy trait will be removed altogether.

Although we expect this trait to be used only in the standard library,
we suspect it may be in use elsehwere, so we're landing this change
separately to identify any surprising breakages.

It's known that this trait is used within the Rust for Linux project; a
patch is in progress to remove their dependency.

This is a part of the arbitrary self types v2 project,
https://github.com/rust-lang/rfcs/pull/3519
https://github.com/rust-lang/rust/issues/44874

r? @wesleywiser
Diffstat (limited to 'library/core/src/ops/mod.rs')
-rw-r--r--library/core/src/ops/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/ops/mod.rs b/library/core/src/ops/mod.rs
index 5464bf645d9..c9f47e5daad 100644
--- a/library/core/src/ops/mod.rs
+++ b/library/core/src/ops/mod.rs
@@ -168,8 +168,8 @@ pub use self::control_flow::ControlFlow;
 pub use self::coroutine::{Coroutine, CoroutineState};
 #[unstable(feature = "deref_pure_trait", issue = "87121")]
 pub use self::deref::DerefPure;
-#[unstable(feature = "receiver_trait", issue = "none")]
-pub use self::deref::Receiver;
+#[unstable(feature = "legacy_receiver_trait", issue = "none")]
+pub use self::deref::LegacyReceiver;
 #[stable(feature = "rust1", since = "1.0.0")]
 pub use self::deref::{Deref, DerefMut};
 #[stable(feature = "rust1", since = "1.0.0")]