Struct aws_sdk_iotwireless::types::ImportedSidewalkDevice
source · #[non_exhaustive]pub struct ImportedSidewalkDevice {
pub sidewalk_manufacturing_sn: Option<String>,
pub onboarding_status: Option<OnboardStatus>,
pub onboarding_status_reason: Option<String>,
pub last_update_time: Option<DateTime>,
}Expand description
Information about a Sidewalk device that has been added to an import task.
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.sidewalk_manufacturing_sn: Option<String>The Sidewalk manufacturing serial number (SMSN) of the Sidewalk device.
onboarding_status: Option<OnboardStatus>The onboarding status of the Sidewalk device in the import task.
onboarding_status_reason: Option<String>The reason for the onboarding status information for the Sidewalk device.
last_update_time: Option<DateTime>The time at which the status information was last updated.
Implementations§
source§impl ImportedSidewalkDevice
impl ImportedSidewalkDevice
sourcepub fn sidewalk_manufacturing_sn(&self) -> Option<&str>
pub fn sidewalk_manufacturing_sn(&self) -> Option<&str>
The Sidewalk manufacturing serial number (SMSN) of the Sidewalk device.
sourcepub fn onboarding_status(&self) -> Option<&OnboardStatus>
pub fn onboarding_status(&self) -> Option<&OnboardStatus>
The onboarding status of the Sidewalk device in the import task.
sourcepub fn onboarding_status_reason(&self) -> Option<&str>
pub fn onboarding_status_reason(&self) -> Option<&str>
The reason for the onboarding status information for the Sidewalk device.
sourcepub fn last_update_time(&self) -> Option<&DateTime>
pub fn last_update_time(&self) -> Option<&DateTime>
The time at which the status information was last updated.
source§impl ImportedSidewalkDevice
impl ImportedSidewalkDevice
sourcepub fn builder() -> ImportedSidewalkDeviceBuilder
pub fn builder() -> ImportedSidewalkDeviceBuilder
Creates a new builder-style object to manufacture ImportedSidewalkDevice.
Trait Implementations§
source§impl Clone for ImportedSidewalkDevice
impl Clone for ImportedSidewalkDevice
source§fn clone(&self) -> ImportedSidewalkDevice
fn clone(&self) -> ImportedSidewalkDevice
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 ImportedSidewalkDevice
impl Debug for ImportedSidewalkDevice
source§impl PartialEq for ImportedSidewalkDevice
impl PartialEq for ImportedSidewalkDevice
source§fn eq(&self, other: &ImportedSidewalkDevice) -> bool
fn eq(&self, other: &ImportedSidewalkDevice) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ImportedSidewalkDevice
Auto Trait Implementations§
impl RefUnwindSafe for ImportedSidewalkDevice
impl Send for ImportedSidewalkDevice
impl Sync for ImportedSidewalkDevice
impl Unpin for ImportedSidewalkDevice
impl UnwindSafe for ImportedSidewalkDevice
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.