Struct aws_sdk_codecommit::types::builders::IsBinaryFileBuilder
source · #[non_exhaustive]pub struct IsBinaryFileBuilder { /* private fields */ }Expand description
A builder for IsBinaryFile.
Implementations§
source§impl IsBinaryFileBuilder
impl IsBinaryFileBuilder
sourcepub fn source(self, input: bool) -> Self
pub fn source(self, input: bool) -> Self
The binary or non-binary status of file in the source of a merge or pull request.
sourcepub fn set_source(self, input: Option<bool>) -> Self
pub fn set_source(self, input: Option<bool>) -> Self
The binary or non-binary status of file in the source of a merge or pull request.
sourcepub fn get_source(&self) -> &Option<bool>
pub fn get_source(&self) -> &Option<bool>
The binary or non-binary status of file in the source of a merge or pull request.
sourcepub fn destination(self, input: bool) -> Self
pub fn destination(self, input: bool) -> Self
The binary or non-binary status of a file in the destination of a merge or pull request.
sourcepub fn set_destination(self, input: Option<bool>) -> Self
pub fn set_destination(self, input: Option<bool>) -> Self
The binary or non-binary status of a file in the destination of a merge or pull request.
sourcepub fn get_destination(&self) -> &Option<bool>
pub fn get_destination(&self) -> &Option<bool>
The binary or non-binary status of a file in the destination of a merge or pull request.
sourcepub fn base(self, input: bool) -> Self
pub fn base(self, input: bool) -> Self
The binary or non-binary status of a file in the base of a merge or pull request.
sourcepub fn set_base(self, input: Option<bool>) -> Self
pub fn set_base(self, input: Option<bool>) -> Self
The binary or non-binary status of a file in the base of a merge or pull request.
sourcepub fn get_base(&self) -> &Option<bool>
pub fn get_base(&self) -> &Option<bool>
The binary or non-binary status of a file in the base of a merge or pull request.
sourcepub fn build(self) -> IsBinaryFile
pub fn build(self) -> IsBinaryFile
Consumes the builder and constructs a IsBinaryFile.
Trait Implementations§
source§impl Clone for IsBinaryFileBuilder
impl Clone for IsBinaryFileBuilder
source§fn clone(&self) -> IsBinaryFileBuilder
fn clone(&self) -> IsBinaryFileBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for IsBinaryFileBuilder
impl Debug for IsBinaryFileBuilder
source§impl Default for IsBinaryFileBuilder
impl Default for IsBinaryFileBuilder
source§fn default() -> IsBinaryFileBuilder
fn default() -> IsBinaryFileBuilder
source§impl PartialEq for IsBinaryFileBuilder
impl PartialEq for IsBinaryFileBuilder
source§fn eq(&self, other: &IsBinaryFileBuilder) -> bool
fn eq(&self, other: &IsBinaryFileBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IsBinaryFileBuilder
Auto Trait Implementations§
impl Freeze for IsBinaryFileBuilder
impl RefUnwindSafe for IsBinaryFileBuilder
impl Send for IsBinaryFileBuilder
impl Sync for IsBinaryFileBuilder
impl Unpin for IsBinaryFileBuilder
impl UnwindSafe for IsBinaryFileBuilder
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