pub struct LinkData {
pub target: String,
pub link_type: String,
pub extra: BTreeMap<String, Value>,
}Expand description
Payload for item.link.
Adds a dependency or relationship between work items.
Fields§
§target: StringTarget item ID of the link.
link_type: StringType of relationship (e.g. blocks, related_to).
extra: BTreeMap<String, Value>Unknown fields preserved for forward compatibility.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LinkData
impl<'de> Deserialize<'de> for LinkData
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
impl Eq for LinkData
impl StructuralPartialEq for LinkData
Auto Trait Implementations§
impl Freeze for LinkData
impl RefUnwindSafe for LinkData
impl Send for LinkData
impl Sync for LinkData
impl Unpin for LinkData
impl UnsafeUnpin for LinkData
impl UnwindSafe for LinkData
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.