pub struct ItemTargetAssociation {
pub assoc_id: Option<String>,
pub attributes: Option<HashMap<String, String>>,
pub target_id: Option<i64>,
pub target_name: Option<String>,
pub target_type: Option<String>,
}Expand description
ItemTargetAssociation : and a target.
Fields§
§assoc_id: Option<String>§attributes: Option<HashMap<String, String>>§target_id: Option<i64>§target_name: Option<String>§target_type: Option<String>Implementations§
Source§impl ItemTargetAssociation
impl ItemTargetAssociation
Sourcepub fn new() -> ItemTargetAssociation
pub fn new() -> ItemTargetAssociation
and a target.
Trait Implementations§
Source§impl Clone for ItemTargetAssociation
impl Clone for ItemTargetAssociation
Source§fn clone(&self) -> ItemTargetAssociation
fn clone(&self) -> ItemTargetAssociation
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 ItemTargetAssociation
impl Debug for ItemTargetAssociation
Source§impl Default for ItemTargetAssociation
impl Default for ItemTargetAssociation
Source§fn default() -> ItemTargetAssociation
fn default() -> ItemTargetAssociation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ItemTargetAssociation
impl<'de> Deserialize<'de> for ItemTargetAssociation
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 ItemTargetAssociation
impl PartialEq for ItemTargetAssociation
Source§fn eq(&self, other: &ItemTargetAssociation) -> bool
fn eq(&self, other: &ItemTargetAssociation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ItemTargetAssociation
impl Serialize for ItemTargetAssociation
impl StructuralPartialEq for ItemTargetAssociation
Auto Trait Implementations§
impl Freeze for ItemTargetAssociation
impl RefUnwindSafe for ItemTargetAssociation
impl Send for ItemTargetAssociation
impl Sync for ItemTargetAssociation
impl Unpin for ItemTargetAssociation
impl UnsafeUnpin for ItemTargetAssociation
impl UnwindSafe for ItemTargetAssociation
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