Rust Sanitizers and Miri Purpose Guide agents through runtime safety validation for Rust: ASan/TSan/MSan/UBSan via RUSTFLAGS, Miri for compile-time UB detection in unsafe code, and interpreting sanitizer reports. Triggers - "How do I run AddressSanitizer on Rust code?" - "How do I use Miri to check my unsafe Rust?" - "How do I run ThreadSanitizer on a Rust program?" - "My unsafe Rust might have UB — how do I detect it?" - "How do I interpret a Rust ASan report?" - "Can I run Rust sanitizers on stable?" Workflow 1. Sanitizers in Rust (nightly required) Rust sanitizers require nightly and a com…