pub struct Lookup {
pub country: String,
pub search: String,
pub address_id: String,
pub max_results: i32,
pub include_only_locality: String,
pub include_only_postal_code: String,
pub results: SuggestionListing,
}
Fields§
§country: String
§search: String
§address_id: String
§max_results: i32
§include_only_locality: String
§include_only_postal_code: String
§results: SuggestionListing
Trait Implementations§
impl StructuralPartialEq for Lookup
Auto Trait Implementations§
impl Freeze for Lookup
impl RefUnwindSafe for Lookup
impl Send for Lookup
impl Sync for Lookup
impl Unpin for Lookup
impl UnwindSafe for Lookup
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