Searched refs:RefUnwindSafe (Results 1 – 14 of 14) sorted by relevance
/third_party/rust/crates/once_cell/src/ |
D | lib.rs | 359 panic::{RefUnwindSafe, UnwindSafe}, 393 impl<T: RefUnwindSafe + UnwindSafe> RefUnwindSafe for OnceCell<T> {} 689 impl<T, F: RefUnwindSafe> RefUnwindSafe for Lazy<T, F> where OnceCell<T>: RefUnwindSafe {} 833 panic::RefUnwindSafe, 1238 impl<T, F: RefUnwindSafe> RefUnwindSafe for Lazy<T, F> where OnceCell<T>: RefUnwindSafe {}
|
D | imp_cs.rs | 1 use core::panic::{RefUnwindSafe, UnwindSafe}; 23 impl<T: RefUnwindSafe + UnwindSafe> RefUnwindSafe for OnceCell<T> {}
|
D | imp_pl.rs | 3 panic::{RefUnwindSafe, UnwindSafe}, 24 impl<T: RefUnwindSafe + UnwindSafe> RefUnwindSafe for OnceCell<T> {}
|
D | imp_std.rs | 9 panic::{RefUnwindSafe, UnwindSafe}, 37 impl<T: RefUnwindSafe + UnwindSafe> RefUnwindSafe for OnceCell<T> {}
|
/third_party/rust/crates/regex/src/ |
D | pool.rs | 60 use std::panic::{RefUnwindSafe, UnwindSafe}; 90 Box<dyn Fn() -> T + Send + Sync + UnwindSafe + RefUnwindSafe + 'static>; 281 use std::panic::{RefUnwindSafe, UnwindSafe}; 289 fn has_oibits<T: Send + Sync + UnwindSafe + RefUnwindSafe>() {} in oibits() argument
|
/third_party/rust/crates/proc-macro2/src/ |
D | marker.rs | 3 use core::panic::{RefUnwindSafe, UnwindSafe}; 21 impl RefUnwindSafe for ProcMacroAutoTraits {}
|
D | rcvec.rs | 4 use core::panic::RefUnwindSafe; 145 impl<T> RefUnwindSafe for RcVec<T> where T: RefUnwindSafe {}
|
/third_party/rust/crates/proc-macro2/tests/ |
D | marker.rs | 71 use std::panic::{RefUnwindSafe, UnwindSafe}; 76 assert_impl!($types is UnwindSafe and RefUnwindSafe);
|
/third_party/rust/crates/regex/tests/ |
D | test_default.rs | 86 use std::panic::{RefUnwindSafe, UnwindSafe}; in oibits() 91 fn assert_ref_unwind_safe<T: RefUnwindSafe>() {} in oibits() argument
|
/third_party/rust/crates/clap/src/parser/ |
D | error.rs | 57 std::panic::RefUnwindSafe, in check_auto_traits()
|
/third_party/rust/crates/once_cell/ |
D | CHANGELOG.md | 140 - implement `RefUnwindSafe` for `Lazy`. 186 - implement `std::panic::RefUnwindSafe` and `std::panic::UnwindSafe` for `OnceCell`
|
/third_party/rust/crates/aho-corasick/src/ |
D | prefilter.rs | 3 use std::panic::{RefUnwindSafe, UnwindSafe}; 51 Send + Sync + RefUnwindSafe + UnwindSafe + fmt::Debug
|
D | ahocorasick.rs | 2128 use std::panic::{RefUnwindSafe, UnwindSafe}; in oibits() 2132 fn assert_unwind_safe<T: RefUnwindSafe + UnwindSafe>() {} in oibits()
|
/third_party/rust/crates/regex/ |
D | CHANGELOG.md | 163 All regex types now implement `UnwindSafe` and `RefUnwindSafe`.
|