let result = hub
.places()
.search_text(GoogleMapsPlacesV1SearchTextRequest {
price_levels: None,
region_code: None,
min_rating: None,
ev_options: None,
text_query: Some("example".to_string()),
rank_preference: None,
search_along_route_parameters: None,
open_now: None,
routing_parameters: None,
location_restriction: None,
strict_type_filtering: None,
language_code: None,
location_bias: None,
page_size: None,
page_token: None,
max_result_count: None,
included_type: None,
})
// no method named `update_mask` found for struct `PlaceSearchTextCall` in the current scope
.update_mask(FieldMask::new::<&str>(&[]))
.doit()
.await;
The
update_maskseems to be missing from the places api