pub struct LocationData {
pub place_id: i64,
pub licence: Option<String>,
pub osm_type: Option<String>,
pub osm_id: Option<i64>,
pub lat: f64,
pub lon: f64,
pub display_name: String,
pub address: Option<Address>,
pub boundingbox: Vec<String>,
pub class: Option<String>,
pub type: Option<String>,
pub importance: Option<f64>,
}Fields§
§place_id: i64§licence: Option<String>§osm_type: Option<String>§osm_id: Option<i64>§lat: f64§lon: f64§display_name: String§address: Option<Address>§boundingbox: Vec<String>§class: Option<String>§type: Option<String>§importance: Option<f64>Trait Implementations§
Source§impl Clone for LocationData
impl Clone for LocationData
Source§fn clone(&self) -> LocationData
fn clone(&self) -> LocationData
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 LocationData
impl Debug for LocationData
Source§impl<'de> Deserialize<'de> for LocationData
impl<'de> Deserialize<'de> for LocationData
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 Display for LocationData
impl Display for LocationData
Auto Trait Implementations§
impl Freeze for LocationData
impl RefUnwindSafe for LocationData
impl Send for LocationData
impl Sync for LocationData
impl Unpin for LocationData
impl UnwindSafe for LocationData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.