//! # Example: Single Station
//!
//! This example shows how to query for a single station based on the unique
//! station code and then print out all trains that either have departed that
//! station or are currently enroute to that station.
use Client;
const STATION_CODE: &str = "PHL";
async