Home
last modified time | relevance | path

Searched refs:RefUnwindSafe (Results 1 – 14 of 14) sorted by relevance

/third_party/rust/crates/once_cell/src/
Dlib.rs359 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 {}
Dimp_cs.rs1 use core::panic::{RefUnwindSafe, UnwindSafe};
23 impl<T: RefUnwindSafe + UnwindSafe> RefUnwindSafe for OnceCell<T> {}
Dimp_pl.rs3 panic::{RefUnwindSafe, UnwindSafe},
24 impl<T: RefUnwindSafe + UnwindSafe> RefUnwindSafe for OnceCell<T> {}
Dimp_std.rs9 panic::{RefUnwindSafe, UnwindSafe},
37 impl<T: RefUnwindSafe + UnwindSafe> RefUnwindSafe for OnceCell<T> {}
/third_party/rust/crates/regex/src/
Dpool.rs60 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/
Dmarker.rs3 use core::panic::{RefUnwindSafe, UnwindSafe};
21 impl RefUnwindSafe for ProcMacroAutoTraits {}
Drcvec.rs4 use core::panic::RefUnwindSafe;
145 impl<T> RefUnwindSafe for RcVec<T> where T: RefUnwindSafe {}
/third_party/rust/crates/proc-macro2/tests/
Dmarker.rs71 use std::panic::{RefUnwindSafe, UnwindSafe};
76 assert_impl!($types is UnwindSafe and RefUnwindSafe);
/third_party/rust/crates/regex/tests/
Dtest_default.rs86 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/
Derror.rs57 std::panic::RefUnwindSafe, in check_auto_traits()
/third_party/rust/crates/once_cell/
DCHANGELOG.md140 - implement `RefUnwindSafe` for `Lazy`.
186 - implement `std::panic::RefUnwindSafe` and `std::panic::UnwindSafe` for `OnceCell`
/third_party/rust/crates/aho-corasick/src/
Dprefilter.rs3 use std::panic::{RefUnwindSafe, UnwindSafe};
51 Send + Sync + RefUnwindSafe + UnwindSafe + fmt::Debug
Dahocorasick.rs2128 use std::panic::{RefUnwindSafe, UnwindSafe}; in oibits()
2132 fn assert_unwind_safe<T: RefUnwindSafe + UnwindSafe>() {} in oibits()
/third_party/rust/crates/regex/
DCHANGELOG.md163 All regex types now implement `UnwindSafe` and `RefUnwindSafe`.