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
17
//! Feedback about the outcome of the sequence of validation attempts.

pub mod request;
pub mod response;

// -----------------------------------------------------------------------------

pub use crate::address_validation::provide_validation_feedback::{
    request::{
        Request,
        RequestQuery,
        ValidationConclusion,
    },
    response::{
        Response,
    },
};