pub struct CreateCommentArgs {
pub content: String,
pub task_id: Option<String>,
pub project_id: Option<String>,
pub attachment: Option<Attachment>,
}
Expand description
Comment creation arguments
Fields§
§content: String
§task_id: Option<String>
§project_id: Option<String>
§attachment: Option<Attachment>
Trait Implementations§
Source§impl Debug for CreateCommentArgs
impl Debug for CreateCommentArgs
Source§impl Default for CreateCommentArgs
impl Default for CreateCommentArgs
Source§fn default() -> CreateCommentArgs
fn default() -> CreateCommentArgs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateCommentArgs
impl RefUnwindSafe for CreateCommentArgs
impl Send for CreateCommentArgs
impl Sync for CreateCommentArgs
impl Unpin for CreateCommentArgs
impl UnwindSafe for CreateCommentArgs
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