pub struct UpdateCommentInput {
pub comment_id: String,
pub content: String,
}Fields§
§comment_id: StringThe system-generated ID of the comment you want to update. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
content: StringThe updated content to replace the existing content of the comment.
Trait Implementations§
Source§impl Clone for UpdateCommentInput
impl Clone for UpdateCommentInput
Source§fn clone(&self) -> UpdateCommentInput
fn clone(&self) -> UpdateCommentInput
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 UpdateCommentInput
impl Debug for UpdateCommentInput
Source§impl Default for UpdateCommentInput
impl Default for UpdateCommentInput
Source§fn default() -> UpdateCommentInput
fn default() -> UpdateCommentInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateCommentInput
impl PartialEq for UpdateCommentInput
Source§impl Serialize for UpdateCommentInput
impl Serialize for UpdateCommentInput
impl StructuralPartialEq for UpdateCommentInput
Auto Trait Implementations§
impl Freeze for UpdateCommentInput
impl RefUnwindSafe for UpdateCommentInput
impl Send for UpdateCommentInput
impl Sync for UpdateCommentInput
impl Unpin for UpdateCommentInput
impl UnwindSafe for UpdateCommentInput
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