We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Option<extern "abi" fn>
1 parent a8adf76 commit 156734dCopy full SHA for 156734d
library/core/src/option.rs
@@ -80,11 +80,13 @@
80
//! * [`Box<U>`]
81
//! * `&U`
82
//! * `&mut U`
83
-//! * `fn`, `extern "C" fn`
+//! * `fn`, `extern "C" fn`[^extern_fn]
84
//! * [`num::NonZero*`]
85
//! * [`ptr::NonNull<U>`]
86
//! * `#[repr(transparent)]` struct around one of the types in this list.
87
//!
88
+//! [^extern_fn]: this remains true for any other ABI: `extern "abi" fn` (_e.g._, `extern "system" fn`)
89
+//!
90
//! [`Box<U>`]: ../../std/boxed/struct.Box.html
91
//! [`num::NonZero*`]: crate::num
92
//! [`ptr::NonNull<U>`]: crate::ptr::NonNull
0 commit comments