gdnative_core/init/
diagnostics.rs

1//! Run-time tracing functions to help debug the init process.
2//!
3//! The provided functions are designed to convey any issues found through human-readable
4//! error output, while programmatically providing only an overall indication of whether
5//! any problems were found. This is so that they can be freely improved without compatibility
6//! concerns.
7
8mod missing_manual_registration;
9mod missing_suggested_diagnostics;
10
11#[doc(inline)]
12pub use missing_manual_registration::missing_manual_registration;
13
14#[doc(inline)]
15pub use missing_suggested_diagnostics::missing_suggested_diagnostics;