pub struct ClickUpLinkedTask {
pub task_id: String,
pub link_id: String,
pub link_type: Option<String>,
}Expand description
ClickUp linked task (non-dependency relationship).
Fields§
§task_id: String§link_id: String§link_type: Option<String>Dependency type: “blocked_by”, “blocking”, or null (plain link).
Trait Implementations§
Source§impl Clone for ClickUpLinkedTask
impl Clone for ClickUpLinkedTask
Source§fn clone(&self) -> ClickUpLinkedTask
fn clone(&self) -> ClickUpLinkedTask
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 ClickUpLinkedTask
impl Debug for ClickUpLinkedTask
Source§impl<'de> Deserialize<'de> for ClickUpLinkedTask
impl<'de> Deserialize<'de> for ClickUpLinkedTask
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
Auto Trait Implementations§
impl Freeze for ClickUpLinkedTask
impl RefUnwindSafe for ClickUpLinkedTask
impl Send for ClickUpLinkedTask
impl Sync for ClickUpLinkedTask
impl Unpin for ClickUpLinkedTask
impl UnsafeUnpin for ClickUpLinkedTask
impl UnwindSafe for ClickUpLinkedTask
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