Struct aws_sdk_codecommit::operation::get_differences::builders::GetDifferencesOutputBuilder
source · #[non_exhaustive]pub struct GetDifferencesOutputBuilder { /* private fields */ }Expand description
A builder for GetDifferencesOutput.
Implementations§
source§impl GetDifferencesOutputBuilder
impl GetDifferencesOutputBuilder
sourcepub fn differences(self, input: Difference) -> Self
pub fn differences(self, input: Difference) -> Self
Appends an item to differences.
To override the contents of this collection use set_differences.
A data type object that contains information about the differences, including whether the difference is added, modified, or deleted (A, D, M).
sourcepub fn set_differences(self, input: Option<Vec<Difference>>) -> Self
pub fn set_differences(self, input: Option<Vec<Difference>>) -> Self
A data type object that contains information about the differences, including whether the difference is added, modified, or deleted (A, D, M).
sourcepub fn get_differences(&self) -> &Option<Vec<Difference>>
pub fn get_differences(&self) -> &Option<Vec<Difference>>
A data type object that contains information about the differences, including whether the difference is added, modified, or deleted (A, D, M).
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
An enumeration token that can be used in a request to return the next batch of the results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
An enumeration token that can be used in a request to return the next batch of the results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
An enumeration token that can be used in a request to return the next batch of the results.
sourcepub fn build(self) -> GetDifferencesOutput
pub fn build(self) -> GetDifferencesOutput
Consumes the builder and constructs a GetDifferencesOutput.
Trait Implementations§
source§impl Clone for GetDifferencesOutputBuilder
impl Clone for GetDifferencesOutputBuilder
source§fn clone(&self) -> GetDifferencesOutputBuilder
fn clone(&self) -> GetDifferencesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetDifferencesOutputBuilder
impl Debug for GetDifferencesOutputBuilder
source§impl Default for GetDifferencesOutputBuilder
impl Default for GetDifferencesOutputBuilder
source§fn default() -> GetDifferencesOutputBuilder
fn default() -> GetDifferencesOutputBuilder
source§impl PartialEq for GetDifferencesOutputBuilder
impl PartialEq for GetDifferencesOutputBuilder
source§fn eq(&self, other: &GetDifferencesOutputBuilder) -> bool
fn eq(&self, other: &GetDifferencesOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetDifferencesOutputBuilder
Auto Trait Implementations§
impl Freeze for GetDifferencesOutputBuilder
impl RefUnwindSafe for GetDifferencesOutputBuilder
impl Send for GetDifferencesOutputBuilder
impl Sync for GetDifferencesOutputBuilder
impl Unpin for GetDifferencesOutputBuilder
impl UnwindSafe for GetDifferencesOutputBuilder
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