Struct rusoto_codecommit::GetDifferencesOutput [] [src]

pub struct GetDifferencesOutput {
    pub next_token: Option<String>,
    pub differences: Option<Vec<Difference>>,
}

Fields

An enumeration token that can be used in a request to return the next batch of the results.

A differences data type object that contains information about the differences, including whether the difference is added, modified, or deleted (A, D, M).

Trait Implementations

impl Default for GetDifferencesOutput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for GetDifferencesOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GetDifferencesOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations