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