pub struct SignInLocation {
pub city: String,
pub state: String,
pub country_or_region: String,
pub geo_coordinates: GeoCoordinates,
}Fields§
§city: String§state: String§country_or_region: String§geo_coordinates: GeoCoordinatesTrait Implementations§
Source§impl Clone for SignInLocation
impl Clone for SignInLocation
Source§fn clone(&self) -> SignInLocation
fn clone(&self) -> SignInLocation
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 SignInLocation
impl Debug for SignInLocation
Source§impl<'de> Deserialize<'de> for SignInLocation
impl<'de> Deserialize<'de> for SignInLocation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SignInLocation
impl PartialEq for SignInLocation
Source§impl Serialize for SignInLocation
impl Serialize for SignInLocation
impl Eq for SignInLocation
impl StructuralPartialEq for SignInLocation
Auto Trait Implementations§
impl Freeze for SignInLocation
impl RefUnwindSafe for SignInLocation
impl Send for SignInLocation
impl Sync for SignInLocation
impl Unpin for SignInLocation
impl UnwindSafe for SignInLocation
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