[][src]Struct rusoto_codecommit::GetDifferencesInput

pub struct GetDifferencesInput {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub after_commit_specifier: String,
    pub after_path: Option<String>,
    pub before_commit_specifier: Option<String>,
    pub before_path: Option<String>,
    pub repository_name: String,
}

Fields

max_results: Option<i64>

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.

after_commit_specifier: String

The branch, tag, HEAD, or other fully qualified reference used to identify a commit.

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.

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.

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.

repository_name: String

The name of the repository where you want to get differences.

Trait Implementations

impl Clone for GetDifferencesInput[src]

impl Debug for GetDifferencesInput[src]

impl Default for GetDifferencesInput[src]

impl PartialEq<GetDifferencesInput> for GetDifferencesInput[src]

impl Serialize for GetDifferencesInput[src]

impl StructuralPartialEq for GetDifferencesInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.