Home
last modified time | relevance | path

Searched refs:PanicInfo (Results 1 – 2 of 2) sorted by relevance

/external/crosvm/src/
Dpanic_hook.rs8 use std::panic::{self, PanicInfo};
57 fn log_panic_info(default_panic: &(dyn Fn(&PanicInfo) + Sync + Send + 'static), info: &PanicInfo) { in log_panic_info() argument
/external/rust/crates/proc-macro2/src/
Ddetection.rs1 use std::panic::{self, PanicInfo};
52 type PanicHook = dyn Fn(&PanicInfo) + Sync + Send + 'static; in initialize()