Struct aws_sdk_codestarconnections::operation::get_repository_sync_status::builders::GetRepositorySyncStatusOutputBuilder
source · #[non_exhaustive]pub struct GetRepositorySyncStatusOutputBuilder { /* private fields */ }
Expand description
A builder for GetRepositorySyncStatusOutput
.
Implementations§
source§impl GetRepositorySyncStatusOutputBuilder
impl GetRepositorySyncStatusOutputBuilder
sourcepub fn latest_sync(self, input: RepositorySyncAttempt) -> Self
pub fn latest_sync(self, input: RepositorySyncAttempt) -> Self
The status of the latest sync returned for a specified repository and branch.
This field is required.sourcepub fn set_latest_sync(self, input: Option<RepositorySyncAttempt>) -> Self
pub fn set_latest_sync(self, input: Option<RepositorySyncAttempt>) -> Self
The status of the latest sync returned for a specified repository and branch.
sourcepub fn get_latest_sync(&self) -> &Option<RepositorySyncAttempt>
pub fn get_latest_sync(&self) -> &Option<RepositorySyncAttempt>
The status of the latest sync returned for a specified repository and branch.
sourcepub fn build(self) -> GetRepositorySyncStatusOutput
pub fn build(self) -> GetRepositorySyncStatusOutput
Consumes the builder and constructs a GetRepositorySyncStatusOutput
.
Trait Implementations§
source§impl Clone for GetRepositorySyncStatusOutputBuilder
impl Clone for GetRepositorySyncStatusOutputBuilder
source§fn clone(&self) -> GetRepositorySyncStatusOutputBuilder
fn clone(&self) -> GetRepositorySyncStatusOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for GetRepositorySyncStatusOutputBuilder
impl Default for GetRepositorySyncStatusOutputBuilder
source§fn default() -> GetRepositorySyncStatusOutputBuilder
fn default() -> GetRepositorySyncStatusOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetRepositorySyncStatusOutputBuilder
impl PartialEq for GetRepositorySyncStatusOutputBuilder
source§fn eq(&self, other: &GetRepositorySyncStatusOutputBuilder) -> bool
fn eq(&self, other: &GetRepositorySyncStatusOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetRepositorySyncStatusOutputBuilder
Auto Trait Implementations§
impl Freeze for GetRepositorySyncStatusOutputBuilder
impl RefUnwindSafe for GetRepositorySyncStatusOutputBuilder
impl Send for GetRepositorySyncStatusOutputBuilder
impl Sync for GetRepositorySyncStatusOutputBuilder
impl Unpin for GetRepositorySyncStatusOutputBuilder
impl UnwindSafe for GetRepositorySyncStatusOutputBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.