use crate::error::Error as GoogleMapsError;
use crate::geocoding::{
response::Response as GeocodingResponse, reverse::ReverseRequest as GeocodingReverseRequest,
};
impl<'a> GeocodingReverseRequest<'a> {
pub async fn execute(&'a mut self) -> Result<GeocodingResponse, GoogleMapsError> {
self.build().get().await
} }