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
impl crate::traits::Validatable for crate::places::query_autocomplete::Request<'_> {
    /// Ensures that the request is valid.
    ///
    /// ## Arguments
    ///
    /// This method accepts no arguments.
    ///
    /// # Errors
    ///
    /// * This trait implementation is required for operation but there are
    ///   currently no validations performed for this request type. This method
    ///   will always return `Ok`.
    fn validate(&self) -> Result<(), crate::Error> { Ok(()) }
} // impl