Struct aws_sdk_iotwireless::types::PositionSolverDetails
source · #[non_exhaustive]pub struct PositionSolverDetails {
pub semtech_gnss: Option<SemtechGnssDetail>,
}
Expand description
The wrapper for position solver details.
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.semtech_gnss: Option<SemtechGnssDetail>
The Semtech GNSS solver object details.
Implementations§
source§impl PositionSolverDetails
impl PositionSolverDetails
sourcepub fn semtech_gnss(&self) -> Option<&SemtechGnssDetail>
pub fn semtech_gnss(&self) -> Option<&SemtechGnssDetail>
The Semtech GNSS solver object details.
source§impl PositionSolverDetails
impl PositionSolverDetails
sourcepub fn builder() -> PositionSolverDetailsBuilder
pub fn builder() -> PositionSolverDetailsBuilder
Creates a new builder-style object to manufacture PositionSolverDetails
.
Trait Implementations§
source§impl Clone for PositionSolverDetails
impl Clone for PositionSolverDetails
source§fn clone(&self) -> PositionSolverDetails
fn clone(&self) -> PositionSolverDetails
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 PositionSolverDetails
impl Debug for PositionSolverDetails
source§impl PartialEq for PositionSolverDetails
impl PartialEq for PositionSolverDetails
source§fn eq(&self, other: &PositionSolverDetails) -> bool
fn eq(&self, other: &PositionSolverDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PositionSolverDetails
Auto Trait Implementations§
impl RefUnwindSafe for PositionSolverDetails
impl Send for PositionSolverDetails
impl Sync for PositionSolverDetails
impl Unpin for PositionSolverDetails
impl UnwindSafe for PositionSolverDetails
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