pub struct CreateCommentRequest {
pub project_key: String,
pub work_item_type_key: String,
pub work_item_id: i64,
pub content: Option<String>,
pub rich_text: Option<Vec<Value>>,
}Fields§
§project_key: String§work_item_type_key: String§work_item_id: i64§content: Option<String>§rich_text: Option<Vec<Value>>Trait Implementations§
Source§impl Debug for CreateCommentRequest
impl Debug for CreateCommentRequest
Source§impl Default for CreateCommentRequest
impl Default for CreateCommentRequest
Source§fn default() -> CreateCommentRequest
fn default() -> CreateCommentRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateCommentRequest
impl RefUnwindSafe for CreateCommentRequest
impl Send for CreateCommentRequest
impl Sync for CreateCommentRequest
impl Unpin for CreateCommentRequest
impl UnwindSafe for CreateCommentRequest
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