#[non_exhaustive]pub struct SidewalkSingleStartImportInfo {
pub sidewalk_manufacturing_sn: Option<String>,
}Expand description
Information about an import task created for an individual Sidewalk device.
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 device added to the import task.
Implementations§
source§impl SidewalkSingleStartImportInfo
impl SidewalkSingleStartImportInfo
sourcepub fn sidewalk_manufacturing_sn(&self) -> Option<&str>
pub fn sidewalk_manufacturing_sn(&self) -> Option<&str>
The Sidewalk manufacturing serial number (SMSN) of the device added to the import task.
source§impl SidewalkSingleStartImportInfo
impl SidewalkSingleStartImportInfo
sourcepub fn builder() -> SidewalkSingleStartImportInfoBuilder
pub fn builder() -> SidewalkSingleStartImportInfoBuilder
Creates a new builder-style object to manufacture SidewalkSingleStartImportInfo.
Trait Implementations§
source§impl Clone for SidewalkSingleStartImportInfo
impl Clone for SidewalkSingleStartImportInfo
source§fn clone(&self) -> SidewalkSingleStartImportInfo
fn clone(&self) -> SidewalkSingleStartImportInfo
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 PartialEq for SidewalkSingleStartImportInfo
impl PartialEq for SidewalkSingleStartImportInfo
source§fn eq(&self, other: &SidewalkSingleStartImportInfo) -> bool
fn eq(&self, other: &SidewalkSingleStartImportInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SidewalkSingleStartImportInfo
Auto Trait Implementations§
impl Freeze for SidewalkSingleStartImportInfo
impl RefUnwindSafe for SidewalkSingleStartImportInfo
impl Send for SidewalkSingleStartImportInfo
impl Sync for SidewalkSingleStartImportInfo
impl Unpin for SidewalkSingleStartImportInfo
impl UnwindSafe for SidewalkSingleStartImportInfo
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.