We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78274bc commit db0126aCopy full SHA for db0126a
src/libcore/future/mod.rs
@@ -17,7 +17,7 @@ pub use self::future::Future;
17
/// This type is needed because:
18
///
19
/// a) Generators cannot implement `for<'a, 'b> Generator<&'a mut Context<'b>>`, so we need to pass
20
-/// a raw pointer.
+/// a raw pointer (see https://github.com/rust-lang/rust/issues/68923).
21
/// b) Raw pointers and `NonNull` aren't `Send` or `Sync`, so that would make every single future
22
/// non-Send/Sync as well, and we don't want that.
23
0 commit comments