pub struct SecurityProfileTargetMapping {
pub security_profile_identifier: Option<SecurityProfileIdentifier>,
pub target: Option<SecurityProfileTarget>,
}Expand description
Information about a security profile and the target associated with it.
Fields§
§security_profile_identifier: Option<SecurityProfileIdentifier>Information that identifies the security profile.
target: Option<SecurityProfileTarget>Information about the target (thing group) associated with the security profile.
Trait Implementations§
Source§impl Clone for SecurityProfileTargetMapping
impl Clone for SecurityProfileTargetMapping
Source§fn clone(&self) -> SecurityProfileTargetMapping
fn clone(&self) -> SecurityProfileTargetMapping
Returns a duplicate 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 SecurityProfileTargetMapping
impl Debug for SecurityProfileTargetMapping
Source§impl Default for SecurityProfileTargetMapping
impl Default for SecurityProfileTargetMapping
Source§fn default() -> SecurityProfileTargetMapping
fn default() -> SecurityProfileTargetMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecurityProfileTargetMapping
impl<'de> Deserialize<'de> for SecurityProfileTargetMapping
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SecurityProfileTargetMapping
impl PartialEq for SecurityProfileTargetMapping
Source§fn eq(&self, other: &SecurityProfileTargetMapping) -> bool
fn eq(&self, other: &SecurityProfileTargetMapping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SecurityProfileTargetMapping
Auto Trait Implementations§
impl Freeze for SecurityProfileTargetMapping
impl RefUnwindSafe for SecurityProfileTargetMapping
impl Send for SecurityProfileTargetMapping
impl Sync for SecurityProfileTargetMapping
impl Unpin for SecurityProfileTargetMapping
impl UnwindSafe for SecurityProfileTargetMapping
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