commit | c6b6378a8842c576f08a6995fc0309eaba5d0431 | [log] [tgz] |
---|---|---|
author | Xin Li <[email protected]> | Sat Aug 14 06:42:16 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Sat Aug 14 06:42:16 2021 +0000 |
tree | ee0741f958fe697978838edb95ab00e50af08beb | |
parent | c0a4e4addc7f57818a04cde4594a0b5867e6ceb2 [diff] | |
parent | ffde23c2247386b4d7d42a263a29a19cfd7d8283 [diff] |
[automerger skipped] Mark sc-dev-plus-aosp-without-vendor@7634622 as merged am: b7d088b1c4 -s ours am: ffde23c224 -s ours am skip reason: Merged-In Ia04b5d72f91eeb6f302d6aeb197921f6f2840231 with SHA-1 8c7b8009c7 is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/which/+/15571581 Change-Id: I2fa785b30012df49c611a73b5125a470509d60c4
A Rust equivalent of Unix command “which”. Locate installed executable in cross platforms.
To find which rustc exectable binary is using.
use which::which; let result = which::which("rustc").unwrap(); assert_eq!(result, PathBuf::from("/usr/bin/rustc"));
The documentation is available online.