[][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-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 will be 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 prior to the afterCommitSpecifier value will be 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 will be shown for all paths.

repository_name: String

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

Trait Implementations

impl PartialEq<GetDifferencesInput> for GetDifferencesInput[src]

impl Default for GetDifferencesInput[src]

impl Clone for GetDifferencesInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetDifferencesInput[src]

impl Serialize for GetDifferencesInput[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self