pub struct ClickUpMetadata {
pub statuses: Vec<ClickUpStatus>,
pub custom_fields: Vec<ClickUpCustomField>,
}Expand description
Metadata for a ClickUp list, used for dynamic schema enrichment.
In cloud mode, this is loaded from the database (project.issueTrackerMetadata). In CLI mode, this can be fetched from the ClickUp API.
Fields§
§statuses: Vec<ClickUpStatus>§custom_fields: Vec<ClickUpCustomField>Custom fields defined for the list.
Trait Implementations§
Source§impl Clone for ClickUpMetadata
impl Clone for ClickUpMetadata
Source§fn clone(&self) -> ClickUpMetadata
fn clone(&self) -> ClickUpMetadata
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 ClickUpMetadata
impl Debug for ClickUpMetadata
Source§impl<'de> Deserialize<'de> for ClickUpMetadata
impl<'de> Deserialize<'de> for ClickUpMetadata
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 ClickUpMetadata
impl RefUnwindSafe for ClickUpMetadata
impl Send for ClickUpMetadata
impl Sync for ClickUpMetadata
impl Unpin for ClickUpMetadata
impl UnsafeUnpin for ClickUpMetadata
impl UnwindSafe for ClickUpMetadata
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