fre-rs 0.1.0

Safe, ergonomic Rust abstraction over the AIR Native Extension (ANE) C API (`fre-sys`) for native-side development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 
//! Internal implementation details of the crate. Not intended for public use.
//!  



thread_local! {
    /// Thread-local storage for caching panic information,
    /// which will be propagated to the Flash Runtime.
    pub static LAST_PANIC_INFO: std::cell::RefCell<Option<String>> = std::cell::RefCell::new(None);
}