pub struct TaskCommentItemV1 {
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 Clone for TaskCommentItemV1
impl Clone for TaskCommentItemV1
Source§fn clone(&self) -> TaskCommentItemV1
fn clone(&self) -> TaskCommentItemV1
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 TaskCommentItemV1
impl Debug for TaskCommentItemV1
Source§impl<'de> Deserialize<'de> for TaskCommentItemV1
impl<'de> Deserialize<'de> for TaskCommentItemV1
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 TaskCommentItemV1
impl RefUnwindSafe for TaskCommentItemV1
impl Send for TaskCommentItemV1
impl Sync for TaskCommentItemV1
impl Unpin for TaskCommentItemV1
impl UnsafeUnpin for TaskCommentItemV1
impl UnwindSafe for TaskCommentItemV1
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