pub struct TransactionIncludesResponseGeolocation {
pub city: Option<String>,
pub country: Option<String>,
pub postal_code: Option<String>,
pub state: Option<String>,
}Expand description
TransactionIncludesResponseGeolocation
JSON schema
{
"type": "object",
"properties": {
"city": {
"examples": [
"lehi"
],
"type": "string"
},
"country": {
"examples": [
"us"
],
"type": "string"
},
"postal code": {
"examples": [
"84043"
],
"type": "string"
},
"state": {
"examples": [
"UT"
],
"type": "string"
}
}
}Fields§
§city: Option<String>§country: Option<String>§postal_code: Option<String>§state: Option<String>Trait Implementations§
Source§impl Clone for TransactionIncludesResponseGeolocation
impl Clone for TransactionIncludesResponseGeolocation
Source§fn clone(&self) -> TransactionIncludesResponseGeolocation
fn clone(&self) -> TransactionIncludesResponseGeolocation
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<'de> Deserialize<'de> for TransactionIncludesResponseGeolocation
impl<'de> Deserialize<'de> for TransactionIncludesResponseGeolocation
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 From<&TransactionIncludesResponseGeolocation> for TransactionIncludesResponseGeolocation
impl From<&TransactionIncludesResponseGeolocation> for TransactionIncludesResponseGeolocation
Source§fn from(value: &TransactionIncludesResponseGeolocation) -> Self
fn from(value: &TransactionIncludesResponseGeolocation) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransactionIncludesResponseGeolocation
impl RefUnwindSafe for TransactionIncludesResponseGeolocation
impl Send for TransactionIncludesResponseGeolocation
impl Sync for TransactionIncludesResponseGeolocation
impl Unpin for TransactionIncludesResponseGeolocation
impl UnwindSafe for TransactionIncludesResponseGeolocation
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