#[non_exhaustive]pub struct PostCommentForPullRequestOutput {
pub repository_name: Option<String>,
pub pull_request_id: Option<String>,
pub before_commit_id: Option<String>,
pub after_commit_id: Option<String>,
pub before_blob_id: Option<String>,
pub after_blob_id: Option<String>,
pub location: Option<Location>,
pub comment: Option<Comment>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.repository_name: Option<String>
The name of the repository where you posted a comment on a pull request.
pull_request_id: Option<String>
The system-generated ID of the pull request.
before_commit_id: Option<String>
The full commit ID of the commit in the source branch used to create the pull request, or in the case of an updated pull request, the full commit ID of the commit used to update the pull request.
after_commit_id: Option<String>
The full commit ID of the commit in the destination branch where the pull request is merged.
before_blob_id: Option<String>
In the directionality of the pull request, the blob ID of the before blob.
after_blob_id: Option<String>
In the directionality of the pull request, the blob ID of the after blob.
location: Option<Location>
The location of the change where you posted your comment.
comment: Option<Comment>
The content of the comment you posted.
Implementations
The name of the repository where you posted a comment on a pull request.
The system-generated ID of the pull request.
The full commit ID of the commit in the source branch used to create the pull request, or in the case of an updated pull request, the full commit ID of the commit used to update the pull request.
The full commit ID of the commit in the destination branch where the pull request is merged.
In the directionality of the pull request, the blob ID of the before blob.
In the directionality of the pull request, the blob ID of the after blob.
The location of the change where you posted your comment.
Creates a new builder-style object to manufacture PostCommentForPullRequestOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for PostCommentForPullRequestOutput
impl Sync for PostCommentForPullRequestOutput
impl Unpin for PostCommentForPullRequestOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more