We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 739c1fb + f4f353b commit 6eec399Copy full SHA for 6eec399
rust/kernel/traits.rs
@@ -8,7 +8,7 @@ use alloc::{alloc::AllocError, sync::Arc};
8
9
/// Trait which provides a fallible version of `pin()` for pointer types.
10
///
11
-/// Common pointer types which implement a `pin()` method include [`Box`], [`Arc`] and [`Rc`].
+/// Common pointer types which implement a `pin()` method include [`Box`](alloc::boxed::Box) and [`Arc`].
12
pub trait TryPin<P: Deref> {
13
/// Constructs a new `Pin<pointer<T>>`. If `T` does not implement [`Unpin`], then data
14
/// will be pinned in memory and unable to be moved. An error will be returned
0 commit comments