#[non_exhaustive]pub struct GetDifferencesInput {
pub repository_name: Option<String>,
pub before_commit_specifier: Option<String>,
pub after_commit_specifier: Option<String>,
pub before_path: Option<String>,
pub after_path: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}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 want to get differences.
before_commit_specifier: Option<String>The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID). Optional. If not specified, all changes before the afterCommitSpecifier value are shown. If you do not use beforeCommitSpecifier in your request, consider limiting the results with maxResults.
after_commit_specifier: Option<String>The branch, tag, HEAD, or other fully qualified reference used to identify a commit.
before_path: Option<String>The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If beforePath and afterPath are not specified, differences are shown for all paths.
after_path: Option<String>The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences are shown for all paths.
max_results: Option<i32>A non-zero, non-negative integer used to limit the number of returned results.
next_token: Option<String>An enumeration token that, when provided in a request, returns the next batch of the results.
Implementations§
source§impl GetDifferencesInput
impl GetDifferencesInput
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository where you want to get differences.
sourcepub fn before_commit_specifier(&self) -> Option<&str>
pub fn before_commit_specifier(&self) -> Option<&str>
The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, the full commit ID). Optional. If not specified, all changes before the afterCommitSpecifier value are shown. If you do not use beforeCommitSpecifier in your request, consider limiting the results with maxResults.
sourcepub fn after_commit_specifier(&self) -> Option<&str>
pub fn after_commit_specifier(&self) -> Option<&str>
The branch, tag, HEAD, or other fully qualified reference used to identify a commit.
sourcepub fn before_path(&self) -> Option<&str>
pub fn before_path(&self) -> Option<&str>
The file path in which to check for differences. Limits the results to this path. Can also be used to specify the previous name of a directory or folder. If beforePath and afterPath are not specified, differences are shown for all paths.
sourcepub fn after_path(&self) -> Option<&str>
pub fn after_path(&self) -> Option<&str>
The file path in which to check differences. Limits the results to this path. Can also be used to specify the changed name of a directory or folder, if it has changed. If not specified, differences are shown for all paths.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
A non-zero, non-negative integer used to limit the number of returned results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
An enumeration token that, when provided in a request, returns the next batch of the results.
source§impl GetDifferencesInput
impl GetDifferencesInput
sourcepub fn builder() -> GetDifferencesInputBuilder
pub fn builder() -> GetDifferencesInputBuilder
Creates a new builder-style object to manufacture GetDifferencesInput.
Trait Implementations§
source§impl Clone for GetDifferencesInput
impl Clone for GetDifferencesInput
source§fn clone(&self) -> GetDifferencesInput
fn clone(&self) -> GetDifferencesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetDifferencesInput
impl Debug for GetDifferencesInput
source§impl PartialEq for GetDifferencesInput
impl PartialEq for GetDifferencesInput
source§fn eq(&self, other: &GetDifferencesInput) -> bool
fn eq(&self, other: &GetDifferencesInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetDifferencesInput
Auto Trait Implementations§
impl Freeze for GetDifferencesInput
impl RefUnwindSafe for GetDifferencesInput
impl Send for GetDifferencesInput
impl Sync for GetDifferencesInput
impl Unpin for GetDifferencesInput
impl UnwindSafe for GetDifferencesInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more