pub struct GeoPointAddress {
pub country_iso2: String,
pub state: Option<String>,
pub city: Option<String>,
pub street: Option<String>,
}Expand description
Generated from the following TL definition:
geoPointAddress#de4c5d93 flags:# country_iso2:string state:flags.0?string city:flags.1?string street:flags.2?string = GeoPointAddressFields§
§country_iso2: String§state: Option<String>§city: Option<String>§street: Option<String>Trait Implementations§
Source§impl Clone for GeoPointAddress
impl Clone for GeoPointAddress
Source§fn clone(&self) -> GeoPointAddress
fn clone(&self) -> GeoPointAddress
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 moreSource§impl Debug for GeoPointAddress
impl Debug for GeoPointAddress
Source§impl Deserializable for GeoPointAddress
impl Deserializable for GeoPointAddress
Source§impl From<GeoPointAddress> for GeoPointAddress
impl From<GeoPointAddress> for GeoPointAddress
Source§fn from(x: GeoPointAddress) -> Self
fn from(x: GeoPointAddress) -> Self
Converts to this type from the input type.
Source§impl From<GeoPointAddress> for GeoPointAddress
impl From<GeoPointAddress> for GeoPointAddress
Source§fn from(x: GeoPointAddress) -> Self
fn from(x: GeoPointAddress) -> Self
Converts to this type from the input type.
Source§impl Identifiable for GeoPointAddress
impl Identifiable for GeoPointAddress
Source§const CONSTRUCTOR_ID: u32 = 3729546643
const CONSTRUCTOR_ID: u32 = 3729546643
The unique identifier for the type.
Source§impl PartialEq for GeoPointAddress
impl PartialEq for GeoPointAddress
Source§impl Serializable for GeoPointAddress
impl Serializable for GeoPointAddress
impl StructuralPartialEq for GeoPointAddress
Auto Trait Implementations§
impl Freeze for GeoPointAddress
impl RefUnwindSafe for GeoPointAddress
impl Send for GeoPointAddress
impl Sync for GeoPointAddress
impl Unpin for GeoPointAddress
impl UnsafeUnpin for GeoPointAddress
impl UnwindSafe for GeoPointAddress
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