#[non_exhaustive]pub struct ReverseGeocodingConfig {
pub y_attribute_name: String,
pub x_attribute_name: String,
}
Expand description
The input structure for Reverse Geocoding operation type.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.y_attribute_name: String
The field name for the data that describes y-axis coordinate, eg. latitude of a point.
x_attribute_name: String
The field name for the data that describes x-axis coordinate, eg. longitude of a point.
Implementations§
source§impl ReverseGeocodingConfig
impl ReverseGeocodingConfig
sourcepub fn y_attribute_name(&self) -> &str
pub fn y_attribute_name(&self) -> &str
The field name for the data that describes y-axis coordinate, eg. latitude of a point.
sourcepub fn x_attribute_name(&self) -> &str
pub fn x_attribute_name(&self) -> &str
The field name for the data that describes x-axis coordinate, eg. longitude of a point.
source§impl ReverseGeocodingConfig
impl ReverseGeocodingConfig
sourcepub fn builder() -> ReverseGeocodingConfigBuilder
pub fn builder() -> ReverseGeocodingConfigBuilder
Creates a new builder-style object to manufacture ReverseGeocodingConfig
.
Trait Implementations§
source§impl Clone for ReverseGeocodingConfig
impl Clone for ReverseGeocodingConfig
source§fn clone(&self) -> ReverseGeocodingConfig
fn clone(&self) -> ReverseGeocodingConfig
Returns a copy 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 ReverseGeocodingConfig
impl Debug for ReverseGeocodingConfig
source§impl PartialEq for ReverseGeocodingConfig
impl PartialEq for ReverseGeocodingConfig
source§fn eq(&self, other: &ReverseGeocodingConfig) -> bool
fn eq(&self, other: &ReverseGeocodingConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReverseGeocodingConfig
Auto Trait Implementations§
impl RefUnwindSafe for ReverseGeocodingConfig
impl Send for ReverseGeocodingConfig
impl Sync for ReverseGeocodingConfig
impl Unpin for ReverseGeocodingConfig
impl UnwindSafe for ReverseGeocodingConfig
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> 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>
Creates a shared type from an unshared type.