Struct aws_sdk_codecommit::operation::post_comment_for_pull_request::PostCommentForPullRequestOutput
source · #[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>,
/* private fields */
}
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§
source§impl PostCommentForPullRequestOutput
impl PostCommentForPullRequestOutput
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository where you posted a comment on a pull request.
sourcepub fn pull_request_id(&self) -> Option<&str>
pub fn pull_request_id(&self) -> Option<&str>
The system-generated ID of the pull request.
sourcepub fn before_commit_id(&self) -> Option<&str>
pub fn before_commit_id(&self) -> Option<&str>
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.
sourcepub fn after_commit_id(&self) -> Option<&str>
pub fn after_commit_id(&self) -> Option<&str>
The full commit ID of the commit in the destination branch where the pull request is merged.
sourcepub fn before_blob_id(&self) -> Option<&str>
pub fn before_blob_id(&self) -> Option<&str>
In the directionality of the pull request, the blob ID of the before blob.
sourcepub fn after_blob_id(&self) -> Option<&str>
pub fn after_blob_id(&self) -> Option<&str>
In the directionality of the pull request, the blob ID of the after blob.
source§impl PostCommentForPullRequestOutput
impl PostCommentForPullRequestOutput
sourcepub fn builder() -> PostCommentForPullRequestOutputBuilder
pub fn builder() -> PostCommentForPullRequestOutputBuilder
Creates a new builder-style object to manufacture PostCommentForPullRequestOutput
.
Trait Implementations§
source§impl Clone for PostCommentForPullRequestOutput
impl Clone for PostCommentForPullRequestOutput
source§fn clone(&self) -> PostCommentForPullRequestOutput
fn clone(&self) -> PostCommentForPullRequestOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for PostCommentForPullRequestOutput
impl PartialEq for PostCommentForPullRequestOutput
source§fn eq(&self, other: &PostCommentForPullRequestOutput) -> bool
fn eq(&self, other: &PostCommentForPullRequestOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for PostCommentForPullRequestOutput
impl RequestId for PostCommentForPullRequestOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.