pub struct CreateTaskCommentBodyV1 {
pub content: String,
pub parent_id: Option<String>,
}Expand description
创建任务评论请求体(v1) 创建任务评论请求体。
Fields§
§content: String评论内容
parent_id: Option<String>父评论 ID(回复评论时使用) 父评论 ID。
Trait Implementations§
Source§impl Clone for CreateTaskCommentBodyV1
impl Clone for CreateTaskCommentBodyV1
Source§fn clone(&self) -> CreateTaskCommentBodyV1
fn clone(&self) -> CreateTaskCommentBodyV1
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 CreateTaskCommentBodyV1
impl Debug for CreateTaskCommentBodyV1
Source§impl Default for CreateTaskCommentBodyV1
impl Default for CreateTaskCommentBodyV1
Source§fn default() -> CreateTaskCommentBodyV1
fn default() -> CreateTaskCommentBodyV1
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateTaskCommentBodyV1
impl RefUnwindSafe for CreateTaskCommentBodyV1
impl Send for CreateTaskCommentBodyV1
impl Sync for CreateTaskCommentBodyV1
impl Unpin for CreateTaskCommentBodyV1
impl UnsafeUnpin for CreateTaskCommentBodyV1
impl UnwindSafe for CreateTaskCommentBodyV1
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