pub struct CardView {Show 13 fields
pub id: String,
pub title: String,
pub description: Option<String>,
pub state: CardState,
pub priority: Option<PriorityView>,
pub assignees: Vec<String>,
pub tags: Vec<TagView>,
pub due_date: Option<i64>,
pub checklist_progress: Option<ChecklistProgress>,
pub position: u32,
pub linked_thread_id: Option<String>,
pub linked_thread_name: Option<String>,
pub sync_state: SyncState,
}Expand description
A card (work item) in a column.
Fields§
§id: StringUnique card identifier.
title: StringCard title.
description: Option<String>Optional description (may be truncated for list views).
state: CardStateCurrent workflow state.
priority: Option<PriorityView>Priority level for the card.
assignees: Vec<String>Four-word identities of assigned users.
Tags attached to this card.
due_date: Option<i64>Optional due date as Unix timestamp (ms).
checklist_progress: Option<ChecklistProgress>Checklist progress summary, if the card has steps.
position: u32Position within the column (0-indexed).
linked_thread_id: Option<String>Linked message thread ID for discussions.
linked_thread_name: Option<String>Display name of the linked thread (if any).
sync_state: SyncStateSync state of this card.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CardView
impl<'de> Deserialize<'de> for CardView
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 CardView
impl StructuralPartialEq for CardView
Auto Trait Implementations§
impl Freeze for CardView
impl RefUnwindSafe for CardView
impl Send for CardView
impl Sync for CardView
impl Unpin for CardView
impl UnsafeUnpin for CardView
impl UnwindSafe for CardView
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