Struct aws_sdk_iotwireless::types::DeviceProfile
source · #[non_exhaustive]pub struct DeviceProfile {
pub arn: Option<String>,
pub name: Option<String>,
pub id: Option<String>,
}Expand description
Describes a device profile.
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.arn: Option<String>The Amazon Resource Name of the resource.
name: Option<String>The name of the resource.
id: Option<String>The ID of the device profile.
Implementations§
source§impl DeviceProfile
impl DeviceProfile
source§impl DeviceProfile
impl DeviceProfile
sourcepub fn builder() -> DeviceProfileBuilder
pub fn builder() -> DeviceProfileBuilder
Creates a new builder-style object to manufacture DeviceProfile.
Trait Implementations§
source§impl Clone for DeviceProfile
impl Clone for DeviceProfile
source§fn clone(&self) -> DeviceProfile
fn clone(&self) -> DeviceProfile
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 DeviceProfile
impl Debug for DeviceProfile
source§impl PartialEq<DeviceProfile> for DeviceProfile
impl PartialEq<DeviceProfile> for DeviceProfile
source§fn eq(&self, other: &DeviceProfile) -> bool
fn eq(&self, other: &DeviceProfile) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeviceProfile
Auto Trait Implementations§
impl RefUnwindSafe for DeviceProfile
impl Send for DeviceProfile
impl Sync for DeviceProfile
impl Unpin for DeviceProfile
impl UnwindSafe for DeviceProfile
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