We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
PointerLike
NonNull
isize
1 parent 13170cd commit abfa6cfCopy full SHA for abfa6cf
library/core/src/marker.rs
@@ -997,11 +997,13 @@ pub trait PointerLike {}
997
marker_impls! {
998
#[unstable(feature = "pointer_like_trait", issue = "none")]
999
PointerLike for
1000
+ isize,
1001
usize,
1002
{T} &T,
1003
{T} &mut T,
1004
{T} *const T,
1005
{T} *mut T,
1006
+ {T} crate::ptr::NonNull<T>,
1007
{T: PointerLike} crate::pin::Pin<T>,
1008
}
1009
0 commit comments