about summary refs log tree commit diff
path: root/library/std/src/panic.rs
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2025-08-12 12:50:48 +0200
committerMara Bos <m-ou.se@m-ou.se>2025-08-12 12:50:48 +0200
commitbd44d855f5a2c989b5cc5bef517978c47ddc6779 (patch)
treefdf0772d3f14aea6355960a07c49ce934870f7f5 /library/std/src/panic.rs
parenta1531335fe2807715fff569904d99602022643a7 (diff)
downloadrust-bd44d855f5a2c989b5cc5bef517978c47ddc6779.tar.gz
rust-bd44d855f5a2c989b5cc5bef517978c47ddc6779.zip
Link to payload_as_str() from payload().
Diffstat (limited to 'library/std/src/panic.rs')
-rw-r--r--library/std/src/panic.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/std/src/panic.rs b/library/std/src/panic.rs
index cff4f20b5a8..5e8d2f8e78e 100644
--- a/library/std/src/panic.rs
+++ b/library/std/src/panic.rs
@@ -60,6 +60,7 @@ impl<'a> PanicHookInfo<'a> {
     /// Returns the payload associated with the panic.
     ///
     /// This will commonly, but not always, be a `&'static str` or [`String`].
+    /// If you only care about such payloads, use [`payload_as_str`] instead.
     ///
     /// A invocation of the `panic!()` macro in Rust 2021 or later will always result in a
     /// panic payload of type `&'static str` or `String`.
@@ -69,6 +70,7 @@ impl<'a> PanicHookInfo<'a> {
     /// can result in a panic payload other than a `&'static str` or `String`.
     ///
     /// [`String`]: ../../std/string/struct.String.html
+    /// [`payload_as_str`]: PanicHookInfo::payload_as_str
     ///
     /// # Examples
     ///