pub struct UpdateCommentParams {
pub issue_id_or_key: String,
pub id: String,
pub request_body: HashMap<String, Value>,
pub expand: Option<String>,
}
Expand description
struct for passing parameters to the method update_comment
Fields§
§issue_id_or_key: String
The ID or key of the issue.
id: String
The ID of the comment.
request_body: HashMap<String, Value>
§expand: Option<String>
Use expand to include additional information about comments in the response. This parameter accepts renderedBody
, which returns the comment body rendered in HTML.
Trait Implementations§
Source§impl Clone for UpdateCommentParams
impl Clone for UpdateCommentParams
Source§fn clone(&self) -> UpdateCommentParams
fn clone(&self) -> UpdateCommentParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for UpdateCommentParams
impl RefUnwindSafe for UpdateCommentParams
impl Send for UpdateCommentParams
impl Sync for UpdateCommentParams
impl Unpin for UpdateCommentParams
impl UnwindSafe for UpdateCommentParams
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