Google Cloud Platform GCE check library.
[dependencies]
google-cloud-metadata = 0.1.0
```rust use googlecloudmetadata::*;
async fn testongce() { // true: server is running on the GCP such as GCE and GKE. let result = ongce().await; asserteq!(true, result); } ```