pub struct AuthenticatedSessionGeoIp {
pub continent: String,
pub country: String,
pub lat: f64,
pub long: f64,
pub city: String,
}
Expand description
AuthenticatedSessionGeoIp : Get GeoIP Data
Fields§
§continent: String
§country: String
§lat: f64
§long: f64
§city: String
Implementations§
Trait Implementations§
Source§impl Clone for AuthenticatedSessionGeoIp
impl Clone for AuthenticatedSessionGeoIp
Source§fn clone(&self) -> AuthenticatedSessionGeoIp
fn clone(&self) -> AuthenticatedSessionGeoIp
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 AuthenticatedSessionGeoIp
impl Debug for AuthenticatedSessionGeoIp
Source§impl Default for AuthenticatedSessionGeoIp
impl Default for AuthenticatedSessionGeoIp
Source§fn default() -> AuthenticatedSessionGeoIp
fn default() -> AuthenticatedSessionGeoIp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthenticatedSessionGeoIp
impl<'de> Deserialize<'de> for AuthenticatedSessionGeoIp
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
impl StructuralPartialEq for AuthenticatedSessionGeoIp
Auto Trait Implementations§
impl Freeze for AuthenticatedSessionGeoIp
impl RefUnwindSafe for AuthenticatedSessionGeoIp
impl Send for AuthenticatedSessionGeoIp
impl Sync for AuthenticatedSessionGeoIp
impl Unpin for AuthenticatedSessionGeoIp
impl UnwindSafe for AuthenticatedSessionGeoIp
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