usesuper::{StationInfo, Tide};useserde::Deserialize;#[derive(Debug, Deserialize)]/// Predicted data for a given station.
pubstructStation{/// The source station for the predicted tidal data.
pubsource: StationInfo,
/// The part of the queried placeid that this location matches.
pubmatchparam: String,
/// Requested tidal information.
pubresult:Vec<Tide>,
}