Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
tests/ | 04-Jul-2025 | - | 23 | 15 | ||
.android-checksum.json | D | 04-Jul-2025 | 1,023 | 1 | 1 | |
.cargo-checksum.json | D | 04-Jul-2025 | 579 | 1 | 1 | |
Android.bp | D | 04-Jul-2025 | 1.9 KiB | 79 | 72 | |
Cargo.toml | D | 04-Jul-2025 | 790 | 24 | 21 | |
LICENSE | D | 04-Jul-2025 | 1 KiB | 26 | 22 | |
METADATA | D | 04-Jul-2025 | 415 | 18 | 17 | |
MODULE_LICENSE_MIT | D | 04-Jul-2025 | 0 | |||
README.md | D | 04-Jul-2025 | 374 | 8 | 5 | |
TEST_MAPPING | D | 04-Jul-2025 | 455 | 26 | 25 | |
cargo_embargo.json | D | 04-Jul-2025 | 142 | 11 | 10 | |
lib.rs | D | 04-Jul-2025 | 3.8 KiB | 162 | 55 |
README.md
1A macro to evaluate, as a boolean, whether an expression matches a pattern. 2 3For users who build using only Rust 1.42 and newer, consider using [`std::matches`], which 4is included in the [standard library prelude] and thus is automatically in scope. 5 6[`std::matches`]: core::matches 7[standard library prelude]: https://doc.rust-lang.org/stable/reference/names/preludes.html 8