google_maps 3.9.5

An unofficial Google Maps Platform client library for the Rust programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
impl crate::traits::QueryString for crate::address_validation::provide_validation_feedback::Request<'_> {
    /// Builds the URL [query string](https://en.wikipedia.org/wiki/Query_string)
    /// for the HTTP request. The query string is generated from the data found
    /// in this `Request` structure.
    ///
    /// ## Arguments
    ///
    /// This method accepts no arguments.
    ///
    /// ## Notes
    ///
    /// * The Address Validation API mostly uses the HTTP body for the request.
    fn query_string(&self) -> String {
        format!("key={}", self.client.key)
    } // fn
} // impl