pub struct GetTaskCommentResponseV1 {
pub comment_id: String,
pub content: String,
pub creator_id: String,
pub created_at: Option<String>,
pub parent_id: Option<String>,
}Expand description
任务评论详情(v1) 任务评论详情响应。
Fields§
§comment_id: String评论 ID
content: String评论内容
creator_id: String创建者用户 ID
created_at: Option<String>创建时间
parent_id: Option<String>父评论 ID
Trait Implementations§
Source§impl ApiResponseTrait for GetTaskCommentResponseV1
impl ApiResponseTrait for GetTaskCommentResponseV1
Source§fn data_format() -> ResponseFormat
fn data_format() -> ResponseFormat
获取响应数据格式
Source§impl Clone for GetTaskCommentResponseV1
impl Clone for GetTaskCommentResponseV1
Source§fn clone(&self) -> GetTaskCommentResponseV1
fn clone(&self) -> GetTaskCommentResponseV1
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 GetTaskCommentResponseV1
impl Debug for GetTaskCommentResponseV1
Source§impl<'de> Deserialize<'de> for GetTaskCommentResponseV1
impl<'de> Deserialize<'de> for GetTaskCommentResponseV1
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 GetTaskCommentResponseV1
impl RefUnwindSafe for GetTaskCommentResponseV1
impl Send for GetTaskCommentResponseV1
impl Sync for GetTaskCommentResponseV1
impl Unpin for GetTaskCommentResponseV1
impl UnsafeUnpin for GetTaskCommentResponseV1
impl UnwindSafe for GetTaskCommentResponseV1
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