pub struct ExtendedAddress {
pub street: String,
pub house_number: u32,
pub postcode: String,
pub city: String,
pub municipality: String,
pub province: String,
pub coordinates: Coordinates,
}Expand description
Extended address response.
Fields§
§street: String§house_number: u32§postcode: String§city: String§municipality: String§province: String§coordinates: CoordinatesTrait Implementations§
Source§impl Clone for ExtendedAddress
impl Clone for ExtendedAddress
Source§fn clone(&self) -> ExtendedAddress
fn clone(&self) -> ExtendedAddress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ExtendedAddress
impl RefUnwindSafe for ExtendedAddress
impl Send for ExtendedAddress
impl Sync for ExtendedAddress
impl Unpin for ExtendedAddress
impl UnwindSafe for ExtendedAddress
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