Skip to main content

fre_rs/
_internal.rs

1//! 
2//! Internal implementation details of the crate. Not intended for public use.
3//!  
4
5
6
7thread_local! {
8    /// Thread-local storage for caching panic information,
9    /// which will be propagated to the Flash Runtime.
10    pub static LAST_PANIC_INFO: std::cell::RefCell<Option<String>> = std::cell::RefCell::new(None);
11}
12
13
14pub(crate) trait Sealed {}