#[non_exhaustive]pub struct GetResourcePositionOutput {
pub geo_json_payload: Option<Blob>,
/* private fields */
}
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.geo_json_payload: Option<Blob>
The position information of the resource, displayed as a JSON payload. The payload uses the GeoJSON format, which a format that's used to encode geographic data structures. For more information, see GeoJSON.
Implementations§
source§impl GetResourcePositionOutput
impl GetResourcePositionOutput
sourcepub fn geo_json_payload(&self) -> Option<&Blob>
pub fn geo_json_payload(&self) -> Option<&Blob>
The position information of the resource, displayed as a JSON payload. The payload uses the GeoJSON format, which a format that's used to encode geographic data structures. For more information, see GeoJSON.
source§impl GetResourcePositionOutput
impl GetResourcePositionOutput
sourcepub fn builder() -> GetResourcePositionOutputBuilder
pub fn builder() -> GetResourcePositionOutputBuilder
Creates a new builder-style object to manufacture GetResourcePositionOutput
.
Trait Implementations§
source§impl Clone for GetResourcePositionOutput
impl Clone for GetResourcePositionOutput
source§fn clone(&self) -> GetResourcePositionOutput
fn clone(&self) -> GetResourcePositionOutput
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 GetResourcePositionOutput
impl Debug for GetResourcePositionOutput
source§impl PartialEq for GetResourcePositionOutput
impl PartialEq for GetResourcePositionOutput
source§fn eq(&self, other: &GetResourcePositionOutput) -> bool
fn eq(&self, other: &GetResourcePositionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetResourcePositionOutput
impl RequestId for GetResourcePositionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetResourcePositionOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetResourcePositionOutput
impl Send for GetResourcePositionOutput
impl Sync for GetResourcePositionOutput
impl Unpin for GetResourcePositionOutput
impl UnwindSafe for GetResourcePositionOutput
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