pub struct GetCommentsForComparedCommitInput {
pub after_commit_id: String,
pub before_commit_id: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub repository_name: String,
}Fields§
§after_commit_id: StringTo establish the directionality of the comparison, the full commit ID of the after commit.
before_commit_id: Option<String>To establish the directionality of the comparison, the full commit ID of the before commit.
max_results: Option<i64>A non-zero, non-negative integer used to limit the number of returned results. The default is 100 comments, but you can configure up to 500.
next_token: Option<String>An enumeration token that when provided in a request, returns the next batch of the results.
repository_name: StringThe name of the repository where you want to compare commits.
Trait Implementations§
Source§impl Clone for GetCommentsForComparedCommitInput
impl Clone for GetCommentsForComparedCommitInput
Source§fn clone(&self) -> GetCommentsForComparedCommitInput
fn clone(&self) -> GetCommentsForComparedCommitInput
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 GetCommentsForComparedCommitInput
impl Default for GetCommentsForComparedCommitInput
Source§fn default() -> GetCommentsForComparedCommitInput
fn default() -> GetCommentsForComparedCommitInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetCommentsForComparedCommitInput
impl PartialEq for GetCommentsForComparedCommitInput
Source§fn eq(&self, other: &GetCommentsForComparedCommitInput) -> bool
fn eq(&self, other: &GetCommentsForComparedCommitInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetCommentsForComparedCommitInput
Auto Trait Implementations§
impl Freeze for GetCommentsForComparedCommitInput
impl RefUnwindSafe for GetCommentsForComparedCommitInput
impl Send for GetCommentsForComparedCommitInput
impl Sync for GetCommentsForComparedCommitInput
impl Unpin for GetCommentsForComparedCommitInput
impl UnwindSafe for GetCommentsForComparedCommitInput
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