pub struct GetCommentsForPullRequestInput {
pub after_commit_id: Option<String>,
pub before_commit_id: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub pull_request_id: String,
pub repository_name: Option<String>,
}
Fields§
§after_commit_id: Option<String>
The full commit ID of the commit in the source branch that was the tip of the branch at the time the comment was made.
before_commit_id: Option<String>
The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull request was created.
max_results: Option<i64>
A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments. You can return up to 500 comments with a single request.
next_token: Option<String>
An enumeration token that, when provided in a request, returns the next batch of the results.
pull_request_id: String
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
repository_name: Option<String>
The name of the repository that contains the pull request.
Trait Implementations§
Source§impl Clone for GetCommentsForPullRequestInput
impl Clone for GetCommentsForPullRequestInput
Source§fn clone(&self) -> GetCommentsForPullRequestInput
fn clone(&self) -> GetCommentsForPullRequestInput
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 Default for GetCommentsForPullRequestInput
impl Default for GetCommentsForPullRequestInput
Source§fn default() -> GetCommentsForPullRequestInput
fn default() -> GetCommentsForPullRequestInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetCommentsForPullRequestInput
impl PartialEq for GetCommentsForPullRequestInput
Source§fn eq(&self, other: &GetCommentsForPullRequestInput) -> bool
fn eq(&self, other: &GetCommentsForPullRequestInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetCommentsForPullRequestInput
Auto Trait Implementations§
impl Freeze for GetCommentsForPullRequestInput
impl RefUnwindSafe for GetCommentsForPullRequestInput
impl Send for GetCommentsForPullRequestInput
impl Sync for GetCommentsForPullRequestInput
impl Unpin for GetCommentsForPullRequestInput
impl UnwindSafe for GetCommentsForPullRequestInput
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