pub struct ListTasklistTasksResponse {
pub has_more: bool,
pub page_token: Option<String>,
pub total: Option<i32>,
pub items: Vec<TaskItem>,
}Expand description
获取清单任务列表响应
Fields§
§has_more: bool是否还有更多项
page_token: Option<String>分页标记
total: Option<i32>总数
items: Vec<TaskItem>任务列表
Trait Implementations§
Source§impl ApiResponseTrait for ListTasklistTasksResponse
impl ApiResponseTrait for ListTasklistTasksResponse
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
获取响应数据格式
Source§impl Clone for ListTasklistTasksResponse
impl Clone for ListTasklistTasksResponse
Source§fn clone(&self) -> ListTasklistTasksResponse
fn clone(&self) -> ListTasklistTasksResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ListTasklistTasksResponse
impl Debug for ListTasklistTasksResponse
Source§impl<'de> Deserialize<'de> for ListTasklistTasksResponse
impl<'de> Deserialize<'de> for ListTasklistTasksResponse
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 StructuralPartialEq for ListTasklistTasksResponse
Auto Trait Implementations§
impl Freeze for ListTasklistTasksResponse
impl RefUnwindSafe for ListTasklistTasksResponse
impl Send for ListTasklistTasksResponse
impl Sync for ListTasklistTasksResponse
impl Unpin for ListTasklistTasksResponse
impl UnsafeUnpin for ListTasklistTasksResponse
impl UnwindSafe for ListTasklistTasksResponse
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