### Run All Heapless Tests Source: https://github.com/rust-embedded/heapless/blob/main/README.md Execute all tests for the heapless crate, including those requiring the 'serde' feature. ```console cargo test --features serde ``` -------------------------------- ### Run Specific Heapless Tests Source: https://github.com/rust-embedded/heapless/blob/main/README.md Execute only the 'histbuf' tests for the heapless crate, with the 'serde' feature enabled. ```console cargo test histbuf --features serde ``` -------------------------------- ### Format Rust Code with Nightly Source: https://github.com/rust-embedded/heapless/blob/main/README.md Format all Rust code within the project using the nightly version of rustfmt to access experimental options. ```console cargo +nightly fmt --all ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.