Modules§
- Debug trace
- Wrapper around the
backtracecrate to show only part of the stack frames (skip some at the beginning and end). - Tools for performance debugging.
- A 24-bit unsigned integer type that only takes up 24 bits of space (unlike
u24in theuxcrate which takes up “as much space as the smallest integer type that can contain [it]” and hence 32 bits?) - Printing statements to stderr for debugging purposes
Macros§
- Requires a
pub static DO_WARN_THREAD: AtomicBool = AtomicBool::new(false);in the scope, which can be changed via...::DO_WARN_THREAD.store(true, std::sync::atomic::Ordering::SeqCst);.