Commit 3d17993 1 parent 0f72ce1 commit 3d17993 Copy full SHA for 3d17993
File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ use crate::sync::Arc;
12
12
/// to the tasks that are executed on that executor.
13
13
///
14
14
/// This trait is a memory-safe and ergonomic alternative to constructing a
15
- /// [`RawWaker`]. It supports the common executor design in which the data
16
- /// used to wake up a task is stored in an [`Arc`]. Some executors (especially
15
+ /// [`RawWaker`]. It supports the common executor design in which the data used
16
+ /// to wake up a task is stored in an [`Arc`][arc ]. Some executors (especially
17
17
/// those for embedded systems) cannot use this API, which is why [`RawWaker`]
18
18
/// exists as an alternative for those systems.
19
+ ///
20
+ /// [arc]: ../../std/sync/struct.Arc.html
19
21
#[ unstable( feature = "wake_trait" , issue = "69912" ) ]
20
22
pub trait Wake {
21
23
/// Wake this task.
You can’t perform that action at this time.
0 commit comments