pub trait ContextProvider {
// Required method
fn get_station_profile(
&self,
id: &str,
) -> Result<StationProfile, ContextError>;
}Expand description
Provides context for mapping, such as station metadata.
pub trait ContextProvider {
// Required method
fn get_station_profile(
&self,
id: &str,
) -> Result<StationProfile, ContextError>;
}Provides context for mapping, such as station metadata.