pub struct TargetItemAssociation {
pub assoc_id: Option<String>,
pub attributes: Option<HashMap<String, String>>,
pub cluster_id: Option<i64>,
pub item_id: Option<i64>,
pub item_name: Option<String>,
pub item_type: Option<String>,
pub relationship: Option<String>,
}Expand description
TargetItemAssociation : TargetItemAssociation includes details of an association between a target and an item. Also, between targets in case of child target or Linked target.
Fields§
§assoc_id: Option<String>§attributes: Option<HashMap<String, String>>§cluster_id: Option<i64>§item_id: Option<i64>§item_name: Option<String>§item_type: Option<String>§relationship: Option<String>Implementations§
Source§impl TargetItemAssociation
impl TargetItemAssociation
Sourcepub fn new() -> TargetItemAssociation
pub fn new() -> TargetItemAssociation
TargetItemAssociation includes details of an association between a target and an item. Also, between targets in case of child target or Linked target.
Trait Implementations§
Source§impl Clone for TargetItemAssociation
impl Clone for TargetItemAssociation
Source§fn clone(&self) -> TargetItemAssociation
fn clone(&self) -> TargetItemAssociation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TargetItemAssociation
impl Debug for TargetItemAssociation
Source§impl Default for TargetItemAssociation
impl Default for TargetItemAssociation
Source§fn default() -> TargetItemAssociation
fn default() -> TargetItemAssociation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TargetItemAssociation
impl<'de> Deserialize<'de> for TargetItemAssociation
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 TargetItemAssociation
impl PartialEq for TargetItemAssociation
Source§fn eq(&self, other: &TargetItemAssociation) -> bool
fn eq(&self, other: &TargetItemAssociation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TargetItemAssociation
impl Serialize for TargetItemAssociation
impl StructuralPartialEq for TargetItemAssociation
Auto Trait Implementations§
impl Freeze for TargetItemAssociation
impl RefUnwindSafe for TargetItemAssociation
impl Send for TargetItemAssociation
impl Sync for TargetItemAssociation
impl Unpin for TargetItemAssociation
impl UnsafeUnpin for TargetItemAssociation
impl UnwindSafe for TargetItemAssociation
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