pub struct ClickUpTaskList {
pub tasks: Vec<ClickUpTask>,
}Expand description
Response from GET /list/{list_id}/task.
Fields§
§tasks: Vec<ClickUpTask>Trait Implementations§
Source§impl Clone for ClickUpTaskList
impl Clone for ClickUpTaskList
Source§fn clone(&self) -> ClickUpTaskList
fn clone(&self) -> ClickUpTaskList
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 ClickUpTaskList
impl Debug for ClickUpTaskList
Source§impl<'de> Deserialize<'de> for ClickUpTaskList
impl<'de> Deserialize<'de> for ClickUpTaskList
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 ClickUpTaskList
impl RefUnwindSafe for ClickUpTaskList
impl Send for ClickUpTaskList
impl Sync for ClickUpTaskList
impl Unpin for ClickUpTaskList
impl UnsafeUnpin for ClickUpTaskList
impl UnwindSafe for ClickUpTaskList
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