pub struct GeoAdminReverseResponse {
pub results: Vec<GeoAdminReverseLocation>,
}
Expand description
The top-level full JSON (GeoJSON FeatureCollection) response returned by a reverse-geocoding request
See the documentation for more details
{
"results": [
{
"type": "Feature"
"id": "1272199_0"
"attributes": {
"xxx": "xxx",
"...": "...",
},
"layerBodId": "ch.bfs.gebaeude_wohnungs_register",
"layerName": "Register of Buildings and Dwellings",
}
]
}
Fields§
§results: Vec<GeoAdminReverseLocation>
Trait Implementations§
Source§impl Debug for GeoAdminReverseResponse
impl Debug for GeoAdminReverseResponse
Source§impl<'de> Deserialize<'de> for GeoAdminReverseResponse
impl<'de> Deserialize<'de> for GeoAdminReverseResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GeoAdminReverseResponse
impl RefUnwindSafe for GeoAdminReverseResponse
impl Send for GeoAdminReverseResponse
impl Sync for GeoAdminReverseResponse
impl Unpin for GeoAdminReverseResponse
impl UnwindSafe for GeoAdminReverseResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more