[−][src]Struct rusoto_codecommit::GetDifferencesInput
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]
fn eq(&self, other: &GetDifferencesInput) -> bool
[src]
fn ne(&self, other: &GetDifferencesInput) -> bool
[src]
impl Default for GetDifferencesInput
[src]
fn default() -> GetDifferencesInput
[src]
impl Clone for GetDifferencesInput
[src]
fn clone(&self) -> 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
impl Send for GetDifferencesInput
impl Sync for GetDifferencesInput
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self