pub struct ListTaskCommentResponseV1 {
pub items: Vec<TaskCommentItemV1>,
pub has_more: Option<bool>,
pub page_token: Option<String>,
}Expand description
获取任务评论列表响应(v1) 任务评论列表响应。
Fields§
§items: Vec<TaskCommentItemV1>评论列表
has_more: Option<bool>是否有更多数据
page_token: Option<String>翻页标记
Trait Implementations§
Source§impl ApiResponseTrait for ListTaskCommentResponseV1
impl ApiResponseTrait for ListTaskCommentResponseV1
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
获取响应数据格式
Source§impl Clone for ListTaskCommentResponseV1
impl Clone for ListTaskCommentResponseV1
Source§fn clone(&self) -> ListTaskCommentResponseV1
fn clone(&self) -> ListTaskCommentResponseV1
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 ListTaskCommentResponseV1
impl Debug for ListTaskCommentResponseV1
Source§impl<'de> Deserialize<'de> for ListTaskCommentResponseV1
impl<'de> Deserialize<'de> for ListTaskCommentResponseV1
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 ListTaskCommentResponseV1
impl RefUnwindSafe for ListTaskCommentResponseV1
impl Send for ListTaskCommentResponseV1
impl Sync for ListTaskCommentResponseV1
impl Unpin for ListTaskCommentResponseV1
impl UnsafeUnpin for ListTaskCommentResponseV1
impl UnwindSafe for ListTaskCommentResponseV1
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