pub struct ListTasklistsResponse {
pub has_more: bool,
pub page_token: Option<String>,
pub total: Option<i32>,
pub items: Vec<TasklistItem>,
}Expand description
获取任务清单列表响应
Fields§
§has_more: bool是否还有更多项
page_token: Option<String>分页标记
total: Option<i32>总数
items: Vec<TasklistItem>列表项
Trait Implementations§
Source§impl ApiResponseTrait for ListTasklistsResponse
impl ApiResponseTrait for ListTasklistsResponse
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
获取响应数据格式
Source§impl Clone for ListTasklistsResponse
impl Clone for ListTasklistsResponse
Source§fn clone(&self) -> ListTasklistsResponse
fn clone(&self) -> ListTasklistsResponse
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 ListTasklistsResponse
impl Debug for ListTasklistsResponse
Source§impl<'de> Deserialize<'de> for ListTasklistsResponse
impl<'de> Deserialize<'de> for ListTasklistsResponse
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
Source§impl PartialEq for ListTasklistsResponse
impl PartialEq for ListTasklistsResponse
Source§fn eq(&self, other: &ListTasklistsResponse) -> bool
fn eq(&self, other: &ListTasklistsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ListTasklistsResponse
impl Serialize for ListTasklistsResponse
impl StructuralPartialEq for ListTasklistsResponse
Auto Trait Implementations§
impl Freeze for ListTasklistsResponse
impl RefUnwindSafe for ListTasklistsResponse
impl Send for ListTasklistsResponse
impl Sync for ListTasklistsResponse
impl Unpin for ListTasklistsResponse
impl UnsafeUnpin for ListTasklistsResponse
impl UnwindSafe for ListTasklistsResponse
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