#[non_exhaustive]pub struct UpdateWirelessDeviceInput {
pub id: Option<String>,
pub destination_name: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub lo_ra_wan: Option<LoRaWanUpdateDevice>,
pub positioning: Option<PositioningConfigStatus>,
}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.id: Option<String>The ID of the resource to update.
destination_name: Option<String>The name of the new destination for the device.
name: Option<String>The new name of the resource.
description: Option<String>A new description of the resource.
lo_ra_wan: Option<LoRaWanUpdateDevice>The updated wireless device's configuration.
positioning: Option<PositioningConfigStatus>FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
Implementations§
source§impl UpdateWirelessDeviceInput
impl UpdateWirelessDeviceInput
sourcepub fn destination_name(&self) -> Option<&str>
pub fn destination_name(&self) -> Option<&str>
The name of the new destination for the device.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A new description of the resource.
sourcepub fn lo_ra_wan(&self) -> Option<&LoRaWanUpdateDevice>
pub fn lo_ra_wan(&self) -> Option<&LoRaWanUpdateDevice>
The updated wireless device's configuration.
sourcepub fn positioning(&self) -> Option<&PositioningConfigStatus>
pub fn positioning(&self) -> Option<&PositioningConfigStatus>
FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
source§impl UpdateWirelessDeviceInput
impl UpdateWirelessDeviceInput
sourcepub fn builder() -> UpdateWirelessDeviceInputBuilder
pub fn builder() -> UpdateWirelessDeviceInputBuilder
Creates a new builder-style object to manufacture UpdateWirelessDeviceInput.
Trait Implementations§
source§impl Clone for UpdateWirelessDeviceInput
impl Clone for UpdateWirelessDeviceInput
source§fn clone(&self) -> UpdateWirelessDeviceInput
fn clone(&self) -> UpdateWirelessDeviceInput
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 UpdateWirelessDeviceInput
impl Debug for UpdateWirelessDeviceInput
source§impl PartialEq for UpdateWirelessDeviceInput
impl PartialEq for UpdateWirelessDeviceInput
source§fn eq(&self, other: &UpdateWirelessDeviceInput) -> bool
fn eq(&self, other: &UpdateWirelessDeviceInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateWirelessDeviceInput
Auto Trait Implementations§
impl Freeze for UpdateWirelessDeviceInput
impl RefUnwindSafe for UpdateWirelessDeviceInput
impl Send for UpdateWirelessDeviceInput
impl Sync for UpdateWirelessDeviceInput
impl Unpin for UpdateWirelessDeviceInput
impl UnwindSafe for UpdateWirelessDeviceInput
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.