pub struct DeleteCommentParams {
pub issue_id_or_key: String,
pub id: String,
}
Expand description
struct for passing parameters to the method delete_comment
Fields§
§issue_id_or_key: String
The ID or key of the issue.
id: String
The ID of the comment.
Trait Implementations§
Source§impl Clone for DeleteCommentParams
impl Clone for DeleteCommentParams
Source§fn clone(&self) -> DeleteCommentParams
fn clone(&self) -> DeleteCommentParams
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 moreSource§impl Debug for DeleteCommentParams
impl Debug for DeleteCommentParams
Source§impl Default for DeleteCommentParams
impl Default for DeleteCommentParams
Source§fn default() -> DeleteCommentParams
fn default() -> DeleteCommentParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeleteCommentParams
impl RefUnwindSafe for DeleteCommentParams
impl Send for DeleteCommentParams
impl Sync for DeleteCommentParams
impl Unpin for DeleteCommentParams
impl UnwindSafe for DeleteCommentParams
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