about summary refs log tree commit diff
path: root/library/std/src/panic.rs
AgeCommit message (Expand)AuthorLines
2024-06-11Bump deprecation of std's PanicInfo alias to 1.82.0.Mara Bos-1/+1
2024-06-11Add PanicHookInfo::payload_as_str().Mara Bos-0/+39
2024-06-11Add note on panic payload type.Mara Bos-0/+7
2024-06-11Downcast panic payload to String too in example.Mara Bos-0/+2
2024-06-11Move deprecation of std::panic::PanicInfo to 1.80.0.Mara Bos-1/+1
2024-06-11Rename std::panic::PanicInfo to PanicHookInfo.Mara Bos-13/+18
2024-06-11Mark some PanicInfo methods as #[inline] for consistency.Mara Bos-0/+3
2024-06-11Remove std::panic::PanicInfo::internal_constructor+set_payload.Mara Bos-12/+3
2024-06-11Fix doc link.Mara Bos-3/+2
2024-06-11Document difference between core and std's PanicInfo.Mara Bos-2/+9
2024-06-11Split core's PanicInfo and std's PanicInfo.Mara Bos-1/+152
2024-03-31catch_panic: warn about panicking payload dropRalf Jung-0/+3
2024-02-28Implement unwind safety for CondvarJonathan Johnson-1/+5
2024-01-31Store SHOULD_CAPTURE as AtomicU8GnomedDev-6/+6
2023-12-09merge core_panic feature into panic_internalsRalf Jung-1/+1
2023-05-15Shorten lifetime of even more panic temporariesDavid Tolnay-2/+2
2023-05-14Shorten lifetime of panic temporaries in panic_fmt caseDavid Tolnay-1/+3
2023-03-17reviewGus Caplan-1/+1
2023-03-17move default backtrace setting to sysGus Caplan-2/+1
2022-12-28Clarify catch_unwind docs about panic hooksAlbert Larsan-0/+3
2022-09-14Adding backtrace off option for fuchsia targetsAndrew Pollack-17/+16
2022-07-08Support unstable moves via stable in unstable itemsJane Lusby-1/+1
2022-02-02Configure panic hook backtrace behaviorMark Rousskov-0/+114
2022-01-07Implement panic::update_hookBadel2-0/+3
2021-10-19Deduplicate panic_fmtGary Guo-1/+1
2021-09-15Allow `panic!("{}", computed_str)` in const fn.Gary Guo-1/+5
2021-07-30Move UnwindSafe, RefUnwindSafe, AssertUnwindSafe to coreDavid Tolnay-309/+4
2021-07-30Auto merge of #87445 - amalik18:issue-83584-fix, r=kennytmbors-2/+2
2021-07-29Fix may not to appropriate might not or must notAli Malik-2/+2
2021-07-28Add new const_format_args!() macro and use it in panics.Mara Bos-2/+2
2021-06-29Use diagnostic items to check for Send, UnwindSafe and RefUnwindSafe traitsRoxane Fruytier-2/+2
2021-06-29Remove lang items Send, UnwindSafe and RefUnwindSafeRoxane Fruytier-2/+2
2021-06-28Update to new bootstrap compilerMark Rousskov-2/+2
2021-05-27Add #[track_caller] to panic_anyAlex Veber-0/+1
2021-05-15Auto merge of #81858 - ijackson:fork-no-unwind, r=m-ou-sebors-0/+36
2021-05-11use the correct attributes and add helper functionRoxane-2/+2
2021-05-07std panicking: Provide panic::always_abortIan Jackson-0/+36
2021-05-06Add additional migrations to handle auto-traits and clone traitsRoxane-0/+2
2021-02-13Fixed minor typo in catch_unwind docsVictor Roest-1/+1
2021-02-01Auto merge of #80851 - m-ou-se:panic-2021, r=petrochenkovbors-0/+21
2021-01-30Rollup merge of #79023 - yoshuawuyts:stream, r=KodrAusYuki Okushi-0/+14
2021-01-25Make std::panic_2021 an alias for core::panic_2021.Mara Bos-10/+1
2021-01-25Implement new panic!() behaviour for Rust 2021.Mara Bos-0/+30
2021-01-22Add `core::stream::Stream`Yoshua Wuyts-0/+14
2021-01-19Make 'static bound on panic_any explicit.Mara Bos-1/+1
2021-01-19Stabilize std::panic::panic_any.Mara Bos-1/+1
2020-10-28Add tracking issue number for panic_any.Mara Bos-1/+1
2020-10-28Update panic_any feature name.Mara Bos-1/+1
2020-10-18Rename panic_box to panic_any.Mara Bos-5/+5
2020-10-18Add std::panic::panic_box.Mara Bos-0/+14