Struct aws_sdk_omics::types::builders::ReadSetFilesBuilder
source · #[non_exhaustive]pub struct ReadSetFilesBuilder { /* private fields */ }
Expand description
A builder for ReadSetFiles
.
Implementations§
source§impl ReadSetFilesBuilder
impl ReadSetFilesBuilder
sourcepub fn source1(self, input: FileInformation) -> Self
pub fn source1(self, input: FileInformation) -> Self
The location of the first file in Amazon S3.
sourcepub fn set_source1(self, input: Option<FileInformation>) -> Self
pub fn set_source1(self, input: Option<FileInformation>) -> Self
The location of the first file in Amazon S3.
sourcepub fn get_source1(&self) -> &Option<FileInformation>
pub fn get_source1(&self) -> &Option<FileInformation>
The location of the first file in Amazon S3.
sourcepub fn source2(self, input: FileInformation) -> Self
pub fn source2(self, input: FileInformation) -> Self
The location of the second file in Amazon S3.
sourcepub fn set_source2(self, input: Option<FileInformation>) -> Self
pub fn set_source2(self, input: Option<FileInformation>) -> Self
The location of the second file in Amazon S3.
sourcepub fn get_source2(&self) -> &Option<FileInformation>
pub fn get_source2(&self) -> &Option<FileInformation>
The location of the second file in Amazon S3.
sourcepub fn index(self, input: FileInformation) -> Self
pub fn index(self, input: FileInformation) -> Self
The files' index.
sourcepub fn set_index(self, input: Option<FileInformation>) -> Self
pub fn set_index(self, input: Option<FileInformation>) -> Self
The files' index.
sourcepub fn get_index(&self) -> &Option<FileInformation>
pub fn get_index(&self) -> &Option<FileInformation>
The files' index.
sourcepub fn build(self) -> ReadSetFiles
pub fn build(self) -> ReadSetFiles
Consumes the builder and constructs a ReadSetFiles
.
Trait Implementations§
source§impl Clone for ReadSetFilesBuilder
impl Clone for ReadSetFilesBuilder
source§fn clone(&self) -> ReadSetFilesBuilder
fn clone(&self) -> ReadSetFilesBuilder
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 Debug for ReadSetFilesBuilder
impl Debug for ReadSetFilesBuilder
source§impl Default for ReadSetFilesBuilder
impl Default for ReadSetFilesBuilder
source§fn default() -> ReadSetFilesBuilder
fn default() -> ReadSetFilesBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ReadSetFilesBuilder
impl PartialEq for ReadSetFilesBuilder
source§fn eq(&self, other: &ReadSetFilesBuilder) -> bool
fn eq(&self, other: &ReadSetFilesBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReadSetFilesBuilder
Auto Trait Implementations§
impl Freeze for ReadSetFilesBuilder
impl RefUnwindSafe for ReadSetFilesBuilder
impl Send for ReadSetFilesBuilder
impl Sync for ReadSetFilesBuilder
impl Unpin for ReadSetFilesBuilder
impl UnwindSafe for ReadSetFilesBuilder
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> 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.