pub struct PostCommentReplyInput {
pub client_request_token: Option<String>,
pub content: String,
pub in_reply_to: String,
}Fields§
§client_request_token: Option<String>A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.
content: StringThe contents of your reply to a comment.
in_reply_to: StringThe system-generated ID of the comment to which you want to reply. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
Trait Implementations§
Source§impl Clone for PostCommentReplyInput
impl Clone for PostCommentReplyInput
Source§fn clone(&self) -> PostCommentReplyInput
fn clone(&self) -> PostCommentReplyInput
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 PostCommentReplyInput
impl Debug for PostCommentReplyInput
Source§impl Default for PostCommentReplyInput
impl Default for PostCommentReplyInput
Source§fn default() -> PostCommentReplyInput
fn default() -> PostCommentReplyInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PostCommentReplyInput
impl PartialEq for PostCommentReplyInput
Source§impl Serialize for PostCommentReplyInput
impl Serialize for PostCommentReplyInput
impl StructuralPartialEq for PostCommentReplyInput
Auto Trait Implementations§
impl Freeze for PostCommentReplyInput
impl RefUnwindSafe for PostCommentReplyInput
impl Send for PostCommentReplyInput
impl Sync for PostCommentReplyInput
impl Unpin for PostCommentReplyInput
impl UnwindSafe for PostCommentReplyInput
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