pub struct ListSubtasksResponse {
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 ListSubtasksResponse
impl ApiResponseTrait for ListSubtasksResponse
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
获取响应数据格式
Source§impl Clone for ListSubtasksResponse
impl Clone for ListSubtasksResponse
Source§fn clone(&self) -> ListSubtasksResponse
fn clone(&self) -> ListSubtasksResponse
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 ListSubtasksResponse
impl Debug for ListSubtasksResponse
Source§impl<'de> Deserialize<'de> for ListSubtasksResponse
impl<'de> Deserialize<'de> for ListSubtasksResponse
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 ListSubtasksResponse
impl PartialEq for ListSubtasksResponse
Source§fn eq(&self, other: &ListSubtasksResponse) -> bool
fn eq(&self, other: &ListSubtasksResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ListSubtasksResponse
impl Serialize for ListSubtasksResponse
impl StructuralPartialEq for ListSubtasksResponse
Auto Trait Implementations§
impl Freeze for ListSubtasksResponse
impl RefUnwindSafe for ListSubtasksResponse
impl Send for ListSubtasksResponse
impl Sync for ListSubtasksResponse
impl Unpin for ListSubtasksResponse
impl UnsafeUnpin for ListSubtasksResponse
impl UnwindSafe for ListSubtasksResponse
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