pub struct AddCommentParams {
pub issue_id_or_key: String,
pub request_body: HashMap<String, Value>,
pub expand: Option<String>,
}Expand description
struct for passing parameters to the method add_comment
Fields§
§issue_id_or_key: StringThe ID or key of the issue.
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 AddCommentParams
impl Clone for AddCommentParams
Source§fn clone(&self) -> AddCommentParams
fn clone(&self) -> AddCommentParams
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 AddCommentParams
impl RefUnwindSafe for AddCommentParams
impl Send for AddCommentParams
impl Sync for AddCommentParams
impl Unpin for AddCommentParams
impl UnwindSafe for AddCommentParams
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