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