#[non_exhaustive]pub struct DeleteIssueCommentRequest {
pub name: String,
/* private fields */
}Expand description
The request to delete an issue comment.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. Name of the issue comment to delete.
The format is
projects/{project_number}/locations/{location_id}/repositories/{repository_id}/issues/{issue_id}/issueComments/{comment_id}.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteIssueCommentRequest
impl Clone for DeleteIssueCommentRequest
Source§fn clone(&self) -> DeleteIssueCommentRequest
fn clone(&self) -> DeleteIssueCommentRequest
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 DeleteIssueCommentRequest
impl Debug for DeleteIssueCommentRequest
Source§impl Default for DeleteIssueCommentRequest
impl Default for DeleteIssueCommentRequest
Source§fn default() -> DeleteIssueCommentRequest
fn default() -> DeleteIssueCommentRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteIssueCommentRequest
impl Message for DeleteIssueCommentRequest
impl StructuralPartialEq for DeleteIssueCommentRequest
Auto Trait Implementations§
impl Freeze for DeleteIssueCommentRequest
impl RefUnwindSafe for DeleteIssueCommentRequest
impl Send for DeleteIssueCommentRequest
impl Sync for DeleteIssueCommentRequest
impl Unpin for DeleteIssueCommentRequest
impl UnwindSafe for DeleteIssueCommentRequest
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